Skip to content

Commit

Permalink
fix(ci): upgrade tauri-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
yetone committed May 29, 2024
1 parent 9edead5 commit f143fa4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,28 +115,28 @@ jobs:
with:
version: 8.6.0

- name: setup node
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'

- name: install frontend dependencies
- name: Install frontend dependencies
run: pnpm install --no-frozen-lockfile # change this to npm or pnpm depending on which one you use

- name: install Rust nightly
- name: Install Rust nightly
uses: dtolnay/rust-toolchain@nightly
with:
targets: ${{ matrix.config.rust_target }}

- name: install dependencies (ubuntu only)
- name: Install dependencies (ubuntu only)
if: matrix.config.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libx11-dev libxdo-dev libxcb-shape0-dev libxcb-xfixes0-dev
sudo apt-get install -y libunwind-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-gtk3 gstreamer1.0-qt5 gstreamer1.0-pulseaudio
- name: install dependencies (mac only)
- name: Install dependencies (mac only)
if: matrix.config.os == 'macos-latest'
run: |
rustup target add aarch64-apple-darwin
Expand All @@ -152,7 +152,7 @@ jobs:
path: dist/tauri

- name: Install Cargo Tauri for info
run: cargo install tauri-cli --version "=2.0.0-beta.13" --locked
run: cargo install tauri-cli --version "=2.0.0-beta.19" --locked

- name: Tauri info
run: cargo tauri info
Expand Down

0 comments on commit f143fa4

Please sign in to comment.