Skip to content

update version

update version #103

Workflow file for this run

name: Example Workflow
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Build gbdk project
steps:
- name: Checkout project
uses: actions/checkout@v2
- name: Build
uses: ./ # This is only here because the actions is in this repository
with:
subdirectory: ./test-sources # Define the source folder. Default is ./
output-name: your-game # Rename the output file. Default is game
source: main.c # Main source file of your project. Deafult is main.c
- name: Print out build folder
run: ls test-sources