We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff06c98 commit 953b98dCopy full SHA for 953b98d
1 file changed
.github/workflows/build_pipeline.yml
@@ -28,12 +28,23 @@ jobs:
28
29
- name: Build release
30
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
38
39
deploy:
40
needs: build
41
runs-on: ubuntu-latest
42
environment: Preview
43
steps:
44
+ - name: Download Build Artifact
45
+ uses: actions/download-artifact@v2
46
47
48
- name: Deploy to Netlify
49
uses: nwtgck/actions-netlify@v3
50
with:
0 commit comments