Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ZerNico committed Oct 29, 2023
1 parent fb0b9e2 commit e67c68c
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions .github/workflows/release-tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,39 +40,20 @@ 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
with:
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 }}
Expand Down

0 comments on commit e67c68c

Please sign in to comment.