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.
2 parents 0a24812 + f59b0b8 commit 884d4ccCopy full SHA for 884d4cc
.github/workflows/cli-publish.yml
@@ -72,7 +72,7 @@ jobs:
72
- name: Determine trigger type
73
id: trigger_type
74
run: |
75
- if [ "${{ github.event_name }}" == "push" ] && [[ "${{ github.ref }}" == refs/tags/cli/v* ]]; then
+ if [[ "${{ github.event_name }}" == "push" && "${{ github.ref }}" == refs/tags/cli/v* ]]; then
76
echo "is_tag=true" >> "$GITHUB_OUTPUT"
77
TAG_VERSION=${GITHUB_REF#refs/tags/cli/v}
78
echo "tag_version=$TAG_VERSION" >> "$GITHUB_OUTPUT"
0 commit comments