diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1a57e61..c64a3f7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,12 +34,6 @@ jobs: # webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2. # You can remove the one that doesn't apply to your app to speed up the workflow a bit. - - name: setup node - uses: actions/setup-node@v4 - with: - node-version: lts/* - cache: 'pnpm' # Set this to npm, yarn or pnpm. - - name: Install pnpm run: npm install -g pnpm @@ -51,6 +45,13 @@ jobs: restore-keys: | ${{ runner.os }}-pnpm- + + - name: setup node + uses: actions/setup-node@v4 + with: + node-version: lts/* + cache: 'pnpm' # Set this to npm, yarn or pnpm. + - name: install Rust stable uses: dtolnay/rust-toolchain@stable with: