Attempt to fix CI workflow
Some checks failed
Build Windows Package / fetch (push) Failing after 13m6s
Build Windows Package / setup (push) Has been cancelled
Build Windows Package / Windows Build (push) Has been cancelled

This commit is contained in:
2025-04-20 23:53:34 +02:00
parent e8c6f9d464
commit cf38a1de3e
3 changed files with 25 additions and 3 deletions

View File

@@ -14,8 +14,28 @@ jobs:
config: ""
version: custom
setup:
runs-on: windows-gp
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
- name: Install Yarn
run: npm install -g yarn
- name: Cache Yarn dependencies
uses: actions/cache@v4
with:
path: ~/.yarn/cache
key: yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-
windows:
needs: fetch
needs: [fetch, setup]
name: Windows Build
uses: ./.github/workflows/build_windows.yaml
with:

View File

@@ -30,7 +30,9 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: "yarn"
- name: Install Yarn
run: npm install -g yarn
- name: Install Deps
run: "yarn install --frozen-lockfile"

View File

@@ -32,7 +32,7 @@ jobs:
check:
name: Post release checks
needs: release
runs-on: ubuntu-24.04
runs-on: windows-gp
permissions:
checks: read
steps: