From e67c68c8e1839244d69c1a36a5ad3f67c94ee89f Mon Sep 17 00:00:00 2001 From: ZerNico Date: Sun, 29 Oct 2023 22:53:02 +0100 Subject: [PATCH] test --- .github/workflows/release-tauri.yml | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/workflows/release-tauri.yml b/.github/workflows/release-tauri.yml index f6e178ca..569e0a82 100644 --- a/.github/workflows/release-tauri.yml +++ b/.github/workflows/release-tauri.yml @@ -40,11 +40,6 @@ jobs: - name: Rust setup uses: dtolnay/rust-toolchain@stable - - name: Rust cache - uses: swatinem/rust-cache@v2 - with: - workspaces: './apps/tauri/src-tauri -> target' - - name: Install pnpm uses: pnpm/action-setup@v2 id: pnpm-install @@ -52,27 +47,13 @@ jobs: version: 7 run_install: false - - name: Get pnpm store directory - id: pnpm-cache - shell: bash - run: | - echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - - uses: actions/cache@v3 - name: Setup pnpm cache - with: - path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} - key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}-pnpm-store- - - name: install frontend dependencies run: pnpm install - name: build dependencies run: pnpm build --filter=api - - uses: tauri-apps/tauri-action@v0 + - uses: tauri-apps/tauri-action@v0.4.3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VITE_API_URL: ${{ vars.VITE_API_URL }}