A GitHub action that determines if a tag exists in your repo.
Required The tag to search for.
a string value of 'true' or 'false'
- uses: mukunku/[email protected]
id: checkTag
with:
tag: 'tag-to-search-for'
- run: echo ${{ steps.checkTag.outputs.exists }}
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.