Skip to content

Commit 884d4cc

Browse files
authored
Merge pull request #497 from rajbos/minor-fix
fix actionlint error
2 parents 0a24812 + f59b0b8 commit 884d4cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/cli-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Determine trigger type
7373
id: trigger_type
7474
run: |
75-
if [ "${{ github.event_name }}" == "push" ] && [[ "${{ github.ref }}" == refs/tags/cli/v* ]]; then
75+
if [[ "${{ github.event_name }}" == "push" && "${{ github.ref }}" == refs/tags/cli/v* ]]; then
7676
echo "is_tag=true" >> "$GITHUB_OUTPUT"
7777
TAG_VERSION=${GITHUB_REF#refs/tags/cli/v}
7878
echo "tag_version=$TAG_VERSION" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)