chore: pkg workflow #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:win | |
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 |