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 2792f30 commit 182829fCopy full SHA for 182829f
.github/workflows/publish-release-artifacts.yml
@@ -11,13 +11,24 @@ jobs:
11
name: Create Release with Artifacts
12
runs-on: ubuntu-latest
13
steps:
14
- - name: Show GitHub context
15
- env:
16
- GITHUB_CONTEXT: ${{ toJson(github) }}
17
- run: echo "$GITHUB_CONTEXT"
+# - name: Show GitHub context
+# env:
+# GITHUB_CONTEXT: ${{ toJson(github) }}
+# run: echo "$GITHUB_CONTEXT"
18
19
- name: Download All Compiled Core Artifacts
20
uses: dawidd6/action-download-artifact@v3
21
with:
22
workflow: build-cores.yml
23
- commit: ${{ github.sha }}
+ 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