Skip to content

Commit

Permalink
actions: fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
hack3ric committed Nov 2, 2024
1 parent 20a7567 commit 23c44a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd debian/artifacts
for _f in mimic*.deb mimic*.ddeb; do
for _f in $(find . -type f -name 'mimic*.deb' -printf '%P\n') $(find . -type f -name 'mimic*.ddeb' -printf '%P\n'); do
sudo mv "$_f" "${{ matrix.distro.codename }}_$_f";
sha256sum "${{ matrix.distro.codename }}_$_f" > "../${{ matrix.distro.codename }}_$_f.sha256"
done
Expand Down

0 comments on commit 23c44a6

Please sign in to comment.