Skip to content

Commit

Permalink
ci: add release script
Browse files Browse the repository at this point in the history
  • Loading branch information
pgmanutd committed Sep 25, 2020
1 parent 1a6efb9 commit 7e9ea7e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release

on:
push:
tags:
- 'v*'

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
draft: false
prerelease: false

0 comments on commit 7e9ea7e

Please sign in to comment.