Options menu fails to clear joypad state on initialization #14
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: CI | |
on: | |
push: | |
tags: [ v* ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout rgbds | |
uses: actions/checkout@v3 | |
with: | |
path: rgbds | |
ref: v0.6.1 | |
repository: gbdev/rgbds | |
- name: Install rgbds | |
working-directory: rgbds | |
run: | | |
sudo make install | |
cd .. | |
rm -rf rgbds | |
- name: Make | |
run: | | |
make -j$(nproc) | |
if ! git diff-index --quiet HEAD --; then | |
echo 'Uncommitted changes detected:' | |
git diff-index HEAD -- | |
return 1 | |
fi | |
- name: Archive map file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pokecrystal | |
path: 'pokecrystal.map' | |
if-no-files-found: error | |
- name: Check free space | |
run: tools/free_space.awk BANK=all pokecrystal.map | |
- name: Create release draft | |
uses: ncipollo/release-action@v1 | |
with: | |
name: ${{ github.ref_name }} | |
draft: true | |
prerelease: true | |
artifacts: "pokecrystal.gbc" | |
artifactErrorsFailBuild: true |