Skip to content

Commit

Permalink
feat: improved pnpm speed a bit for shared linux
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHillcox committed Mar 8, 2024
1 parent e111509 commit 13bb1eb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ jobs:
pnpm install
pnpm gen:license
pnpm build --publish always -l --x64 --arm64
- uses: actions/cache/save@v4
id: cache
name: Save pnpm modules
with:
path: .pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
# Upload the subprocess/build/libs/ directory as an artifact
- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -124,6 +130,12 @@ jobs:
with:
name: subprocess-jar
path: subprocess/build/libs/
- name: Restore pnpm
uses: actions/cache/restore@v3
id: cache
with:
path: .pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Build App (Overwolf)
env:
OW_CLI_API_KEY: ${{ secrets.OW_CLI_API_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"productName": "FTB Electron App",
"name": "ftb-app",
"version": "1.24.9003",
"version": "1.25.0",
"private": true,
"main": "background.js",
"email": "[email protected]",
Expand Down

0 comments on commit 13bb1eb

Please sign in to comment.