Use the shop part identifiers for the disable kanji, closes #235 #711
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
# Simply execute 'make' to verify things still build | |
name: Build All | |
on: | |
push: | |
branches: | |
- master | |
- 'tr_*' | |
# Allows running manually | |
workflow_dispatch: | |
inputs: | |
use-latest-translations: | |
required: false | |
default: true | |
description: 'Use latest translations from shared Google Docs sheet (default: true)' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: ghcr.io/medabots/medarot3:tr_EN | |
steps: | |
- name: List versions | |
run: | | |
git --version | |
python3 --version | |
rgbasm --version | |
rgblink --version | |
rgbgfx --version | |
- name: Checkout main repository | |
uses: actions/checkout@v2 | |
with: | |
path: 'medarot3' | |
- name: Checkout baserom repository | |
uses: actions/checkout@v2 | |
with: | |
repository: ${{ secrets.BASEROM3_REPOSITORY }} | |
ssh-key: ${{ secrets.BASEROM3_KEY }} | |
path: 'baserom' | |
- name: Copy baserom into main repository | |
run: | | |
cp $GITHUB_WORKSPACE/baserom/*.gbc $GITHUB_WORKSPACE/medarot3 | |
- name: Get latest text from source | |
if: github.event.inputs.use-latest-translations == 'true' | |
working-directory: 'medarot3' | |
env: | |
TRANSLATION_SHEET: sheet.xlsx | |
run: | | |
wget -q --no-check-certificate "${{ secrets.TRANSLATION_SHEET_URL_SOURCE }}" -O $TRANSLATION_SHEET | |
make -j dump_xlsx | |
- name: Make all | |
working-directory: 'medarot3' | |
run: | | |
make -j all | |
- name: Generate IPS files | |
working-directory: 'medarot3' | |
run: | | |
ips_util create baserom_kabuto.gbc medarot3_kabuto.gbc -o m3kabuto-$GITHUB_RUN_NUMBER-$GITHUB_SHA.ips | |
ips_util create baserom_kuwagata.gbc medarot3_kuwagata.gbc -o m3kuwagata-$GITHUB_RUN_NUMBER-$GITHUB_SHA.ips | |
- name: 'Archive IPS files' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ips_files | |
path: medarot3/*.ips | |
retention-days: 1 | |
- name: Verify there are no uncommitted changes | |
if: github.event.inputs.use-latest-translations != 'true' | |
working-directory: 'medarot3' | |
run: | | |
[ -z "$(git status --porcelain)" ] && exit 0 || exit 1 |