Skip to content

Commit

Permalink
chore(ci): add tag release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eveningkid committed Nov 4, 2022
1 parent 3a384bb commit ab92372
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: tag-release
run-name: Tag Release
on:
pull_request:
types:
- closed
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.sha}}
fetch-depth: "0"
- name: Bump version and push tag
uses: anothrNick/github-tag-action@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
WITH_V: true

0 comments on commit ab92372

Please sign in to comment.