Merge pull request #8 from tolik518/mode4_second_try #61
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: Compile GBA | |
on: [push] | |
jobs: | |
Compile-GBA: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v3 | |
- name: build docker image | |
run: make build_image | |
- name: build gba file | |
run: make compile | |
- name: Upload artifact | |
if: ${{ success() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: game.gba | |
path: out/game.gba | |
if-no-files-found: error |