Skip to content

Commit

Permalink
Add workflow for creating a release tag
Browse files Browse the repository at this point in the history
  • Loading branch information
taliesins committed Sep 23, 2020
1 parent 6c7a418 commit af4ae2f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Create release tag

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
# Fetches entire history, so we can analyze commits since last tag
fetch-depth: 0
- name: Bump version and push tag
uses: mathieudutour/github-tag-action@v4.5
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit af4ae2f

Please sign in to comment.