Skip to content

Commit 5e33ee9

Browse files
Ensure tag-exists works as intended (#439)
### Changes The tag-exists action was not working due to the fact that it was trying to read from a step that did not exist. Without these changes, it would always 404 and act as if the tag doesn't exist. ### Checklist - [x] I have read the [Auth0 general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md) - [x] I have read the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md) - [x] All code quality tools/guidelines have been run/followed
2 parents aa21fff + d8e5a91 commit 5e33ee9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/tag-exists/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ runs:
2121
using: composite
2222

2323
steps:
24-
- id: check
24+
- id: tag-exists
2525
shell: bash
2626
run: |
2727
GET_API_URL="https://api.github.com/repos/${GITHUB_REPOSITORY}/git/ref/tags/${TAG_NAME}"

0 commit comments

Comments
 (0)