You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
460 B

name: Build Release
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
run: make
- name: Create Archive
uses: thedoctor0/zip-release@master
with:
filename: release.tar.gz
type: tar
path: bin
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: release
path: release.tar.gz