There was an error while loading. Please reload this page.
1 parent 9e0b397 commit 65ff20bCopy full SHA for 65ff20b
1 file changed
.github/workflows/sign.yml
@@ -40,12 +40,14 @@ jobs:
40
output-artifact-directory: signed
41
42
- name: test
43
- run: ls -R
+ # due to a bug in GitHub, the filename needs to be unique across all uploads
44
+ # see https://github.com/actions/upload-artifact/issues/769
45
+ run: mv signed/random.dll signed/random-signed.dll
46
47
- name: Upload signed artifact
48
uses: actions/upload-artifact@v7
49
with:
- name: 'signed2'
50
+ name: 'signed'
51
if-no-files-found: error
- path: signed/random.dll
52
+ path: signed/random-signed.dll
53
archive: false
0 commit comments