Skip to content

Commit 182829f

Browse files
Actually create the release!
1 parent 2792f30 commit 182829f

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

.github/workflows/publish-release-artifacts.yml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,24 @@ jobs:
1111
name: Create Release with Artifacts
1212
runs-on: ubuntu-latest
1313
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"
1818

1919
- name: Download All Compiled Core Artifacts
2020
uses: dawidd6/action-download-artifact@v3
2121
with:
2222
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

0 commit comments

Comments
 (0)