Skip to content

Add new functions for getting treasure data #9

Add new functions for getting treasure data

Add new functions for getting treasure data #9

Workflow file for this run

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