Skip to content

Commit 09389cb

Browse files
authored
Fix/helm chart publish (#414)
* Publishing hemcharts only from x86 as they duplicate * Fixing bash syntax
1 parent efb48ae commit 09389cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

template/.github/workflows/build.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ jobs:
370370
if: ${{ !github.event.pull_request.head.repo.fork }}
371371
run: |
372372
# We want to publish helmcharts only once as they have a common name, while still publishing both images with architecture specific tags
373-
if ["$(uname -m)" = "x86_64"]; then
373+
if [ "$(uname -m)" = "x86_64" ]; then
374374
make -e publish
375375
else
376376
make -e docker-publish

0 commit comments

Comments
 (0)