Skip to content

Commit 953b98d

Browse files
Update build_pipeline.yml
1 parent ff06c98 commit 953b98d

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/build_pipeline.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,23 @@ jobs:
2828

2929
- name: Build release
3030
run: dotnet publish AudioCuesheetEditor --configuration Release --output release
31+
32+
- name: Upload Build Artifact
33+
uses: actions/upload-artifact@v4
34+
with:
35+
name: AudioCuesheetEditor-Release
36+
path: ./release
37+
retention-days: 1
3138

3239
deploy:
3340
needs: build
3441
runs-on: ubuntu-latest
3542
environment: Preview
3643
steps:
44+
- name: Download Build Artifact
45+
uses: actions/download-artifact@v2
46+
with:
47+
name: AudioCuesheetEditor-Release
3748
- name: Deploy to Netlify
3849
uses: nwtgck/actions-netlify@v3
3950
with:

0 commit comments

Comments
 (0)