Skip to content

Commit be2d6fa

Browse files
committed
Fix packaging
1 parent f1ba455 commit be2d6fa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/CI.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ jobs:
6363
- name: Package
6464
shell: bash
6565
run: |
66-
mv target/${{ matrix.target }}/release/authorized-keys-github authorized-keys-github-${{ matrix.target }}
66+
cd target
67+
for target in *-*; do
68+
mv ${target}/release/authorized-keys-github ../authorized-keys-github-${target}
69+
done
6770
6871
- name: Publish
6972
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)