Skip to content

Commit

Permalink
ci: 👷 Try fixing GitHub Actions artifacts uploading.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jisu-Woniu committed Nov 11, 2023
1 parent 487138a commit ccc031f
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,13 @@ jobs:
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install Rust stable
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
run_install: true
- name: Install the Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install dependencies on Ubuntu
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install frontend dependencies
run: pnpm install # change this to npm or pnpm depending on which one you use
sudo apt-get update && sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- id: tauri
uses: tauri-apps/tauri-action@v0
env:
Expand All @@ -51,4 +47,4 @@ jobs:
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
with:
path: ${{ steps.tauri.outputs.artifactPaths }}
path: ${{ join(fromJson(steps.tauri.outputs.artifactPaths), fromJson('\n')) }}

0 comments on commit ccc031f

Please sign in to comment.