Fix header #58
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: Source Code | |
# As we're using submodules, this bundles the main source code | |
# as well as source code from all submodules | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: 4mb_platformer | |
path: | | |
${{runner.workspace}}/ | |
!${{runner.workspace}}/**/.git/* | |
!${{runner.workspace}}/**/examples/* |