From 58e8e7616010290eb42ec70adb0b840c57050293 Mon Sep 17 00:00:00 2001 From: Youwen Wu <38934577+couscousdude@users.noreply.github.com> Date: Wed, 13 Mar 2024 12:57:15 -0700 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 62 ++++++++++++++++++++------------------ 1 file changed, 33 insertions(+), 29 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e910fe4..6bdfca7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,40 +9,44 @@ jobs: defaults: run: working-directory: ./client + permissions: contents: write + strategy: fail-fast: false matrix: platform: [windows-latest] - + runs-on: ${{ matrix.platform }} + steps: - - uses: actions/checkout@v4 - - - name: setup node - uses: actions/setup-node@v4 - with: - node-version: 20 - - - name: install Rust stable - uses: dtolnay/rust-toolchain@stable - - - uses: actions/checkout@v3 - - uses: pnpm/action-setup@v3 - with: - version: 8 - - - name: install frontend dependencies - run: pnpm install # change this to npm or pnpm depending on which one you use - - - uses: tauri-apps/tauri-action@v0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version - releaseName: 'Jankboard 2 v__VERSION__' - releaseBody: 'See the assets to download this version and install.' - releaseDraft: true - prerelease: false - tauriScript: 'pnpm' + - uses: actions/checkout@v4 + + - name: setup node + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: install Rust stable + uses: dtolnay/rust-toolchain@stable + + - uses: pnpm/action-setup@v3 + with: + version: 8 + + - name: install frontend dependencies + run: pnpm install + + - name: build and release tauri app + uses: tauri-apps/tauri-action@v0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + projectPath: . + tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version + releaseName: 'Jankboard 2 v__VERSION__' + releaseBody: 'See the assets to download this version and install.' + releaseDraft: true + prerelease: false + tauriScript: 'pnpm'