Skip to content

Commit 6a1c75d

Browse files
authored
Fix copying signature files to release assets (#18)
1 parent c8c3b7a commit 6a1c75d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gpg-sign/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ runs:
2525
- name: "Move the signature files to the release directory"
2626
shell: bash
2727
run: |
28-
mv ${{inputs.filenames}}.sig $RELEASE_ASSETS
28+
for filename in ${{ inputs.filenames }}; do mv ${filename}.sig $RELEASE_ASSETS; done

0 commit comments

Comments
 (0)