Skip to content

Commit

Permalink
feat: create add-tag workflow (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Aug 14, 2024
1 parent 9486204 commit abc70e3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/add-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: add-tag

on:
repository_dispatch:
types: [ 'tebako release' ]

jobs:
tag:
name: tag
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Create tag
run: |
git tag -a v${{ github.event.client_payload.version }}
git push origin v${{ github.event.client_payload.version }}

0 comments on commit abc70e3

Please sign in to comment.