Modificado PlayersHouse_1F_Text_GoIntroduceYourselfNextDoor #39
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: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GAME_VERSION: EMERALD | |
GAME_REVISION: 0 | |
GAME_LANGUAGE: ENGLISH | |
MODERN: 0 | |
COMPARE: 1 | |
CHANNEL_ID: ${{ secrets.CHANNEL_ID }} | |
BOT_TOKEN: ${{ secrets.BOT_TOKEN }} | |
COMMIT_MESSAGE: ${{ github.event.head_commit.message }} | |
COMMIT_URL: ${{ github.event.head_commit.url }} | |
COMMIT_AUTHOR: ${{ github.event.head_commit.author.name }} | |
ROM_FILE: "pokeemerald_modern.gba" | |
CI_ROM_FILE: "esmeralda-ptbr-debug.gba" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Checkout agbcc | |
uses: actions/checkout@master | |
with: | |
path: agbcc | |
repository: pret/agbcc | |
- name: Install binutils | |
run: | | |
sudo apt install gcc-arm-none-eabi binutils-arm-none-eabi libpng-dev | |
- name: Install agbcc | |
run: | | |
./build.sh | |
./install.sh ../ | |
working-directory: agbcc | |
- name: Modern | |
env: | |
MODERN: 1 | |
COMPARE: 0 | |
run: make -j${nproc} all | |
- name: Upload to GitHub Releases | |
uses: svenstaro/upload-release-action@v2 | |
env: | |
POST_MSG: "Nova Build do Pokémon Emerald em PT-BR\n\nCommit: ${{ env.COMMIT_MESSAGE }}\nAutor: ${{ env.COMMIT_AUTHOR}}\nURL: ${{ env.COMMIT_URL}}" | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.ROM_FILE }} | |
asset_name: ${{ env.CI_ROM_FILE }} | |
body: ${{ env.POST_MSG }} | |
promote: true | |
tag: "release-ci-${{ github.run_number }}" | |
continue-on-error: true |