Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 21 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,18 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
node-version: "22"
cache: "npm"
version: 10
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "stable"
- name: Install dependencies
run: npm ci
run: pnpm i --frozen-lockfile
- name: Build guest server and app
run: npm run build:linux-gs
run: pnpm run build:linux-gs
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload artifacts
Expand All @@ -38,23 +37,33 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout code
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js

- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
run_install: false

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
node-version: 20
cache: 'pnpm'

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'

- name: Install dependencies
run: npm ci
run: pnpm install --frozen-lockfile
- name: Build guest server and app
run: npm run build:linux-gs
run: pnpm run build:linux-gs
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Zip unpacked variant
run: |
cd dist
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,6 @@
"winston": "^3.17.0",
"xel": "^0.33.7",
"yaml": "^2.7.1"
}
},
"packageManager": "[email protected]+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
}
Loading