diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 79fc5c8..ce4d0f3 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -18,7 +18,6 @@ jobs: args: '--target universal-apple-darwin' - platform: 'ubuntu-22.04' args: '' - runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v4 @@ -31,7 +30,6 @@ jobs: uses: dtolnay/rust-toolchain@stable with: targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} - - name: install dependencies (ubuntu only) if: matrix.platform == 'ubuntu-22.04' # webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2. @@ -40,7 +38,6 @@ jobs: sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf - name: install frontend dependencies run: yarn install - - uses: tauri-apps/tauri-action@v0 with: args: ${{ matrix.args }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a5e0f14..9f6eff8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,11 +17,9 @@ jobs: args: '--target universal-apple-darwin' - platform: 'ubuntu-22.04' args: '' - runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v4 - - name: setup node uses: actions/setup-node@v4 with: @@ -30,7 +28,6 @@ jobs: uses: dtolnay/rust-toolchain@stable with: targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} - - name: install dependencies (ubuntu only) if: matrix.platform == 'ubuntu-22.04' # webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2. @@ -39,7 +36,6 @@ jobs: sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf - name: install frontend dependencies run: yarn install - - uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}