update version #103
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: 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 |