-
-
Notifications
You must be signed in to change notification settings - Fork 3
39 lines (32 loc) · 1.03 KB
/
pkg.yaml
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
name: Build and Upload Artifacts for Multiple OS
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
run_script: pkg:linux
artifact_name: symbol-upload-linux
- os: macos-latest
run_script: pkg:macos
artifact_name: symbol-upload-macos
- os: windows-latest
run_script: pkg:windows
artifact_name: symbol-upload-win
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run platform-specific script
run: npm run ${{ matrix.run_script }} # Executes the script based on the operating system
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact_name }}
path: pkg/* # Uploads the artifact with a platform-specific name and path