File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,24 @@ jobs:
11
11
name : Create Release with Artifacts
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - name : Show GitHub context
15
- env :
16
- GITHUB_CONTEXT : ${{ toJson(github) }}
17
- run : echo "$GITHUB_CONTEXT"
14
+ # - name: Show GitHub context
15
+ # env:
16
+ # GITHUB_CONTEXT: ${{ toJson(github) }}
17
+ # run: echo "$GITHUB_CONTEXT"
18
18
19
19
- name : Download All Compiled Core Artifacts
20
20
uses : dawidd6/action-download-artifact@v3
21
21
with :
22
22
workflow : build-cores.yml
23
- commit : ${{ github.sha }}
23
+ commit : ${{ github.sha }}
24
+
25
+ - name : Create Release
26
+ id : create_release
27
+ uses : softprops/action-gh-release@v2
28
+ env :
29
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
30
+ with :
31
+ tag_name : ${{ github.ref }}
32
+ name : Release ${{ github.ref_name }}
33
+ files : |
34
+ **/*.zip
You can’t perform that action at this time.
0 commit comments