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 4bb043b commit bbf86f6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,12 @@ jobs:
- uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248
with:
toolchain: nightly
target: ${{ matrix.rust_targets }}
targets: ${{ matrix.rust_targets }}

- uses: swatinem/rust-cache@988c164c3d0e93c4dbab36aaf5bbeb77425b2894
with:
workspaces: packages/desktop
key: ${{ matrix.rust_targets }}-${{ hashFiles('packages/desktop/Cargo.lock') }}

- name: Install dependencies (Ubuntu)
if: matrix.platform == 'ubuntu-22.04'
Expand All @@ -68,7 +69,7 @@ jobs:

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

0 comments on commit bbf86f6

Please sign in to comment.