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 7420cf4 commit cdcdceaCopy full SHA for cdcdcea
.github/workflows/archiver.yml
@@ -7,9 +7,9 @@ name: Archiver
7
8
on:
9
push:
10
- branches: [ master ]
11
- pull_request:
12
+ # branches: [ master ]
+ #pull_request:
13
14
jobs:
15
archiver:
@@ -19,8 +19,14 @@ jobs:
19
uses: actions/checkout@v4
20
- name: archive
21
run: .github/workflows/archiver.sh
22
- - name: upload
23
- uses: actions/upload-artifact@v4
+ #- name: upload
+ # 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:
- name: tarball
- path: cudacpp.tgz
32
+ files: cudacpp.tgz
0 commit comments