From 9298fbcc409758ba624a0ae16b83df86637cb8ce Mon Sep 17 00:00:00 2001 From: Sal Date: Wed, 30 Nov 2022 17:19:29 -0500 Subject: [PATCH] update readme for v1.2.0 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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).