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 beeecb3 commit 609cd20Copy full SHA for 609cd20
.github/workflows/publish-release-artifacts.yaml
@@ -1,22 +1,25 @@
1
name: Publish Artifacts on Release
2
on:
3
push:
4
- tags:
5
- - 'v*'
+ branches:
+ - main
6
+# :
7
+# tags:
8
+# - 'v*'
9
permissions:
10
contents: write
11
12
jobs:
13
release:
- name: Publish Artifacts to Release
14
+ name: Create Release with Artifacts
15
needs: build_cores
16
runs-on: ubuntu-latest
17
steps:
18
- name: Show GitHub context
19
env:
20
GITHUB_CONTEXT: ${{ toJson(github) }}
21
run: echo "$GITHUB_CONTEXT"
-
22
+
23
- name: Download All Compiled Core Artifacts
24
uses: dawidd6/action-download-artifact@v3
25
with:
0 commit comments