Skip to content

Commit

Permalink
fix: attempt to fix pnpm issue
Browse files Browse the repository at this point in the history
Signed-off-by: Martichou <m@rtin.fyi>
Martichou committed Jun 26, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent ccf99c3 commit bc49f65
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
@@ -53,7 +53,6 @@ jobs:
- uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
- uses: actions/setup-node@v4
with:
node-version: 20
@@ -75,6 +74,7 @@ jobs:
- name: Build Vite + Tauri
run: |
cd ./${{ matrix.target_path }}
pnpm install
pnpm deb:build
- name: Upload result
uses: actions/upload-artifact@v4
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -42,12 +42,12 @@ jobs:
- uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
- uses: actions/setup-node@v4
with:
node-version: 20
- run: |
cd ${{ matrix.directory }}
pnpm install
pnpm lint
clippy_check:
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -33,7 +33,6 @@ jobs:
- uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
- uses: actions/setup-node@v4
with:
node-version: 20
@@ -53,6 +52,7 @@ jobs:
- name: Build Vite + Tauri
run: |
cd ./${{ matrix.target_path }}
pnpm install
pnpm build
cd ${{ github.workspace }}
./rename_build.sh ${{ github.workspace }}/${{ matrix.target_path }}/src-tauri/target/release/bundle/ ${{ matrix.name }}

0 comments on commit bc49f65

Please sign in to comment.