We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 412a104 commit c6a29d4Copy full SHA for c6a29d4
1 file changed
.github/workflows/release.yml
@@ -38,7 +38,9 @@ jobs:
38
xcode-version: latest-stable
39
40
- name: Verify release tag exists
41
- run: git rev-parse "${RELEASE_TAG}^{tag}"
+ run: |
42
+ git show-ref --verify --quiet "refs/tags/${RELEASE_TAG}"
43
+ git rev-parse --verify "${RELEASE_TAG}^{commit}"
44
45
- name: Run test suite before archiving
46
run: |
0 commit comments