diff --git a/README.md b/README.md index 6238f04..5433b29 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # tag-exists-action -A Github action that determines if a tag exists +A GitHub action that determines if a tag exists in your repo. ## Inputs @@ -16,12 +16,12 @@ a string value of 'true' or 'false' ## Example usage ```yaml -- uses: mukunku/tag-exists-action@v1.1.0 +- uses: mukunku/tag-exists-action@v1.2.0 id: checkTag with: - tag: 'v1' + 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](https://github.com/mukunku/tag-exists-action/wiki/Setting-the-GITHUB_TOKEN-explicitly) +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](https://github.com/mukunku/tag-exists-action/wiki/Setting-the-GITHUB_TOKEN-explicitly).