Skip to content

Commit f6a7022

Browse files
immanuwelltklauser
authored andcommitted
ci: fix unquoted expression in images-dev shell condition
Signed-off-by: Immanuel Tikhonov <pchpr.00@list.ru>
1 parent 3642ae3 commit f6a7022

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/images-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Getting image tag
3232
id: tag
3333
run: |
34-
if [ ${{ github.event.pull_request.head.sha }} != "" ]; then
34+
if [ "${{ github.event.pull_request.head.sha }}" != "" ]; then
3535
echo "tag=${{ github.event.pull_request.head.sha }}" >> $GITHUB_OUTPUT
3636
echo "repo_tags=quay.io/${{ github.repository_owner }}/cilium-cli-ci:${{ github.event.pull_request.head.sha }}" >> $GITHUB_OUTPUT
3737
else

0 commit comments

Comments
 (0)