/update-tags

A Github action that simply tags the repository with the specified tag.

Primary LanguageJavaScriptMIT LicenseMIT

GitHub Update Tags Action

A GitHub action that simply updates the tags in the repository.

Usage

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 }}