Skip to content

switched to mode 4

switched to mode 4 #56

Workflow file for this run

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