Skip to content

Commit 10dec35

Browse files
author
Amsakan Bavan
committed
Added releasing into building GitHub Action
1 parent 34d7b39 commit 10dec35

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,20 @@ jobs:
2929
uses: actions/upload-artifact@v4
3030
with:
3131
name: aGain-${{matrix.os}}
32-
path: build/aGain_artefacts/${{env.BUILD_TYPE}}/VST3/*.vst3
32+
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+
with:
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

Comments
 (0)