Add achievement rarity to GameCenter plugin #47
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: Continuous integration | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build (macOS) | |
runs-on: "macos-latest" | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
architecture: 'x64' | |
- name: Configuring Python | |
run: | | |
python -c "import sys; print(sys.version)" | |
python -m pip install scons | |
python --version | |
scons --version | |
- name: Generate Headers | |
run: | | |
./scripts/generate_headers.sh 3.x || true | |
- name: Compile Plugins | |
run: | | |
./scripts/release_xcframework.sh 3.x | |
ls -l bin/release | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: plugins | |
path: bin/release/* | |
retention-days: 4 | |
if-no-files-found: error |