Skip to content

Commit 65ff20b

Browse files
authored
circumvent github bug
1 parent 9e0b397 commit 65ff20b

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/sign.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,14 @@ jobs:
4040
output-artifact-directory: signed
4141

4242
- name: test
43-
run: ls -R
43+
# 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
4446

4547
- name: Upload signed artifact
4648
uses: actions/upload-artifact@v7
4749
with:
48-
name: 'signed2'
50+
name: 'signed'
4951
if-no-files-found: error
50-
path: signed/random.dll
52+
path: signed/random-signed.dll
5153
archive: false

0 commit comments

Comments
 (0)