Skip to content

mukunku/tag-exists-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

tag-exists-action

A GitHub action that determines if a tag exists in a repo.

Inputs

tag

Required - The tag to search for.

repo

Optional - Repo you'd like to search, in owner/repo-name format.

Outputs

exists

A string value of 'true' or 'false'

Example usages

To check if the tag v1.0 exists in your repo:

- uses: mukunku/tag-exists-action@v1.6.0
  id: check-tag
  with: 
    tag: 'v1.0'

- run: echo "Tag exists!"
  if: steps.check-tag.outputs.exists == 'true' 

To check if the tag v1.0.0 exists in the repo actions/checkout:

- uses: mukunku/tag-exists-action@v1.6.0
  id: check-tag
  with: 
    tag: 'v1.0.0'
    repo: 'actions/checkout'

- run: echo "Tag exists!"
  if: steps.check-tag.outputs.exists == 'true'

This action uses the ${{github.token}} secret to automatically inject your access token. If you'd like to provide your own token instead check out this help article.