Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger committed Feb 1, 2024
1 parent 4a57a46 commit 4bb043b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,8 @@ jobs:

- run: |
mkdir tmp
for f in "${{ join(fromJSON(steps.tauri.outputs.artifactPaths), '\n') }}"
do
mv f "tmp/tauri.${f##*.}"
for f in "${{ join(fromJSON(steps.tauri.outputs.artifactPaths), '\n') }}"; do
mv "$f" "tmp/tauri.${f##*.}"
done
shell: bash
Expand Down

0 comments on commit 4bb043b

Please sign in to comment.