Skip to content

Commit

Permalink
chore(autotag): Update to newer version
Browse files Browse the repository at this point in the history
Signed-off-by: eyenx <[email protected]>
  • Loading branch information
eyenx committed Mar 1, 2021
1 parent 82765d6 commit d3fc4f7
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/autotag.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
name: bump version
name: Bump version
on:
push:
branches:
- master
jobs:
autotag:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
# Fetches entire history, so we can analyze commits since last tag
fetch-depth: 0
- name: Bump version and push tag
uses: mathieudutour/[email protected]
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.PAT }}
- name: Create a GitHub release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
with:
tag_name: ${{ steps.tag_version.outputs.new_tag }}
release_name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}

0 comments on commit d3fc4f7

Please sign in to comment.