fix: follower pokemon should disappear when healed by nurse #99
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 ROM | |
on: | |
push: | |
branches: [ followers ] | |
pull_request: | |
jobs: | |
build_rom: | |
name: Build ROM | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt-get install binutils-arm-none-eabi gcc-arm-none-eabi | |
- name: Build & install agbcc | |
run: | | |
cd .. | |
git clone --depth 1 https://github.com/pret/agbcc | |
cd agbcc | |
./build.sh | |
./install.sh ../pokeemerald | |
- name: Build ROM | |
run: | | |
make |