We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0f5a9e commit 1413204Copy full SHA for 1413204
.github/workflows/release.yml
@@ -34,6 +34,9 @@ jobs:
34
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}
35
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_SECRET }}
36
37
+ - name: Fetch newly created tags
38
+ run: git fetch --tags
39
+
40
- name: Debug release-plz outputs
41
env:
42
PR: ${{ steps.release-plz.outputs.pr }}
@@ -100,6 +103,10 @@ jobs:
100
103
- name: Identify c2patool release
101
104
id: sniff-c2patool-release-tag
102
105
run: |
106
+ echo "All tags on HEAD:"
107
+ git tag --contains HEAD
108
+ echo "Filtered c2patool tags:"
109
+ git tag --contains HEAD | grep '^c2patool-' || echo "No c2patool tags found"
110
echo tag=`git tag --contains HEAD | grep '^c2patool-'` >> "$GITHUB_OUTPUT" || true
111
112
publish-c2patool-binaries:
0 commit comments