-
Notifications
You must be signed in to change notification settings - Fork 9
67 lines (58 loc) · 1.76 KB
/
BUILD_ON_DEMAND.yml
File metadata and controls
67 lines (58 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: BUILD_ON_DEMAND
on:
workflow_dispatch:
inputs:
buildName:
description: 'Name of the build'
required: true
linkedDependencies:
description: 'Dependencies to link from GitHub (format: bpmn-js#develop,dmn-js#9.0.0)'
default: ''
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-2022 ]
runs-on: ${{ matrix.os }}
env:
ON_DEMAND: true
IS_CI: true
BUILD_REF: ${{ github.event.pull_request.number || github.ref_name }}
BUILD_NUMBER: ${{ github.run_number }}-${{ github.run_id }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Get version (sets APP_VERSION)
id: get-version
run: bash ./scripts/get_version_for_artifact_name.sh
- name: Link dependencies
env:
LINKED_DEPENDENCIES: "${{ github.event.inputs.linkedDependencies }}"
run: npm run link-dependencies
- name: Build distro (Linux)
if: ${{ runner.OS == 'Linux' }}
env:
ELECTRON_GET_USE_PROXY: true
run: npm run build -- --linux
- name: Build distro (MacOS)
if: ${{ runner.os == 'macOS' }}
env:
ELECTRON_GET_USE_PROXY: true
run: npm run build -- --mac
- name: Build distro (Windows)
if: ${{ runner.os == 'Windows' }}
env:
ELECTRON_GET_USE_PROXY: true
run: npm run build -- --win
- name: Upload build artifacts ${{ matrix.os }}
uses: actions/upload-artifact@v4
with:
name: fluxnova-modeler-${{ steps.get-version.outputs.APP_VERSION }}-${{ matrix.os }}
path: dist