Files
element-desktop/.github/workflows/build_and_test.yaml
Nik Rozman cf38a1de3e
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
Attempt to fix CI workflow
2025-04-20 23:53:34 +02:00

43 lines
884 B
YAML

name: Build Windows Package
on:
push:
branches: [develop, master, pipeline-rework]
pull_request: {}
workflow_dispatch: {}
jobs:
fetch:
uses: ./.github/workflows/build_prepare.yaml
permissions:
contents: read
with:
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, setup]
name: Windows Build
uses: ./.github/workflows/build_windows.yaml
with:
arch: x64