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 0a24812 commit f59b0b8Copy full SHA for f59b0b8
.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