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 b7d8282 commit 7bc4558Copy full SHA for 7bc4558
.github/workflows/archiver.yml
@@ -7,9 +7,7 @@ name: Archiver
7
8
on:
9
push:
10
- branches: [ master ]
11
- pull_request:
12
+ tags: [ '*' ]
13
14
jobs:
15
archiver:
@@ -19,14 +17,11 @@ jobs:
19
17
uses: actions/checkout@v4
20
18
- name: archive
21
run: .github/workflows/archiver.sh
22
- - name: upload
23
- uses: actions/upload-artifact@v4
24
- with:
25
- name: tarball
26
- path: cudacpp.tgz
27
- name: release
28
# See https://github.com/softprops/action-gh-release
29
uses: softprops/action-gh-release@v2
30
if: startsWith(github.ref, 'refs/tags/')
31
with:
32
files: cudacpp.tgz
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments