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 d746136 commit 6aa721bCopy full SHA for 6aa721b
.github/workflows/nightly.yml
@@ -60,12 +60,22 @@ jobs:
60
id: createpackage
61
- name: List output directory
62
run: ls -lah out/
63
-
64
- name: Upload to GitHub Release
65
- uses: softprops/action-gh-release@v2.1.0
+ uses: ncipollo/release[email protected]
66
with:
67
token: ${{ secrets.GITHUB_TOKEN }}
68
- tag_name: "nightly"
69
- files: |
+ tag: "nightly"
+ artifacts: |
70
out/of_v*.tar.gz
71
out/of_v*.zip
+ allowUpdates: true
72
+ removeArtifacts: true
73
+ replacesArtifacts: true
74
+ # - name: Upload to GitHub Release
75
+ # uses: softprops/[email protected]
76
+ # with:
77
+ # token: ${{ secrets.GITHUB_TOKEN }}
78
+ # tag_name: "nightly"
79
+ # files: |
80
+ # out/of_v*.tar.gz
81
+ # out/of_v*.zip
0 commit comments