Skip to content

Commit

Permalink
feat: repository tagging on dispatch from the emain repo[1]
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Sep 11, 2024
1 parent ee70528 commit dbded99
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/add-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Git identity
run: |
git config --global user.name "tebako-ci"
git config --global user.email "[email protected]"
- name: Create tag
run: |
git tag -a v${{ github.event.client_payload.version }}
git push origin v${{ github.event.client_payload.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit dbded99

Please sign in to comment.