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 application (macOS, arm64) | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/build-mac-arm64.yml" | |
- package.json | |
workflow_dispatch: | |
create: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install Node.js dependencies | |
run: npm install | |
- name: Build the application | |
run: npm run build | |
- name: Compress macOS build artifacts (arm64) | |
run: zip -r build/SlimeTora-darwin-arm64.zip build/SlimeTora-darwin-arm64 | |
- name: Archive build artifacts for macOS (arm64) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artifacts-macos-arm64 | |
path: build/SlimeTora-darwin-arm64.zip |