mirror of
https://github.com/mars3142/gb-snake.git
synced 2026-03-13 03:52:40 +00:00
25 lines
490 B
YAML
25 lines
490 B
YAML
name: Build on push
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Build gbdk project
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
uses: wujood/gbdk-2020-github-builder@1.0.7
|
|
with:
|
|
subdirectory: ./src
|
|
output-name: gb-snake
|
|
source: main.c
|
|
|
|
- name: Archive production artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: dist-gb-file
|
|
path: |
|
|
obj/*.gb
|