Skip to content

Commit

Permalink
Add Github Action to create a release (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmenezes authored Jul 23, 2020
1 parent 72ba2fd commit be02507
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Tag

on:
push:
tags:
- 'v*'

jobs:

tag:
name: Tag
runs-on: ubuntu-latest
steps:
- name: Create Github Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body_path: docs/releases/${{ env.TAG }}.md

0 comments on commit be02507

Please sign in to comment.