Files
RomWBW/.github/workflows/commit.yml
Wayne Warthen e66d997557 Update commit.yml
Run commit build for master and dev branches
2020-04-11 13:37:12 -07:00

32 lines
619 B
YAML

name: Commit Build
on:
push:
branches:
- master
- dev
tags-ignore:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: rlespinasse/github-slug-action@1.1.0
- uses: actions/checkout@v2
- name: Build
run: |
sudo apt-get install libncurses-dev
make
make clean
rm -rf .git*
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
name: RomWBW-${{env.GITHUB_REF_SLUG}}-${{env.GITHUB_SHA_SHORT}}
path: .