Skip to content

Commit

Permalink
Create a release when a tag is pushed
Browse files Browse the repository at this point in the history
Automatically creates a release with a freshly built binary when a
version tag is pushed.
  • Loading branch information
muffix committed Jun 24, 2020
1 parent 6c6bf15 commit b6abd08
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

name: Upload release asset

jobs:
build:
name: Upload release asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build project
run: make build
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build/mvginfo.10m
asset_name: mvginfo-10m
asset_content_type: application/octet-stream

0 comments on commit b6abd08

Please sign in to comment.