Add new functions for getting treasure data #9
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 Bundle MacOS (x64 and arm64) | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build_macos_x64: | |
# if: false # This workflow is disabled | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
arch: [x64] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Build wariosave | |
run: | | |
cd lib | |
mkdir -p build/release | |
make release | |
- name: Publish Build Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: wariosave-artifacts-macos-x64 | |
path: lib/build/release | |
build_macos_arm64: | |
# if: false # This workflow is disabled | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
arch: [arm64] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Build wariosave | |
run: | | |
cd lib | |
mkdir -p build/release | |
make release | |
- name: Publish Build Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: wariosave-artifacts-macos-arm64 | |
path: lib/build/release |