A GitHub action that simply updates the tags in the repository.
name: Deploy
on: [deployment]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Tag Repo
uses: ThirteenAG/update-tags@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}