We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34d7b39 commit 10dec35Copy full SHA for 10dec35
.github/workflows/build.yml
@@ -29,4 +29,20 @@ jobs:
29
uses: actions/upload-artifact@v4
30
with:
31
name: aGain-${{matrix.os}}
32
- path: build/aGain_artefacts/${{env.BUILD_TYPE}}/VST3/*.vst3
+ path: build/aGain_artefacts/${{env.BUILD_TYPE}}/VST3/*.vst3
33
+
34
+ - name: Download all artifacts
35
+ uses: actions/download-artifact@v4
36
+ with:
37
+ path: artifacts
38
39
+ - name: Create Release
40
+ uses: softprops/action-gh-release@v1
41
42
+ files: |
43
+ artifacts/**/*.zip
44
+ draft: false
45
+ prerelease: false
46
+ generate_release_notes: true
47
+ env:
48
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments