Create release.yml

Add release workflow
This commit is contained in:
Antonio Navarro Perez 2020-08-02 21:21:18 +02:00 committed by GitHub
parent 5470c4c5d3
commit 9bf784ccf0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

28
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,28 @@
name: Release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
release:
name: Upload Release Assets
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build project
run: make compile
- name: Upload Release
uses: softprops/action-gh-release@v1
with:
draft: true
prerelease: false
fail_on_unmatched_files: true
files: |
bin/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}