From 1fa8f54be5cf2849bab5e6d7c153331ebd02c3ad Mon Sep 17 00:00:00 2001 From: Bart Ledoux Date: Fri, 17 Jan 2025 11:37:54 +0100 Subject: [PATCH] fix syntax --- .github/workflows/storybook.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/storybook.yml b/.github/workflows/storybook.yml index c364450be8b..445f4cb3d9e 100644 --- a/.github/workflows/storybook.yml +++ b/.github/workflows/storybook.yml @@ -57,14 +57,14 @@ jobs: - name: Publish storybook to Google Cloud working-directory: ui - if: !github.event.pull_request.number + if: ${{ !github.event.pull_request.number }} run: | gsutil -m rsync -d -r storybook-static/storybook gs://internal-kestra-host/${{ format('{0}/{1}', github.repository, github.ref_name) }} - name: Create commit comment uses: peter-evans/commit-comment@v3 - if: !github.event.pull_request.number + if: ${{ !github.event.pull_request.number }} with: body: | Storybook published on ${{ github.event.repository.updated_at }}