From 9d0e4d7d8b27b50a0237417eb204074842cc4531 Mon Sep 17 00:00:00 2001 From: "Jorgen S. Dokken" Date: Fri, 9 Feb 2024 13:38:58 +0000 Subject: [PATCH] More fixes --- .github/workflows/build_docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index a547339..1193768 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -44,7 +44,7 @@ jobs: - name: Upload documentation as artifact (from workflow call) uses: actions/upload-artifact@v4 - if: ${ { github.event_name } == 'workflow_call' + if: ${{ github.event_name == 'workflow_call' }} with: name: ${{ inputs.artifact_name }} path: ${{ env.PUBLISH_DIR }} @@ -53,7 +53,7 @@ jobs: - name: Upload documentation as artifact uses: actions/upload-artifact@v4 - if: ${ { github.event_name } != 'workflow_call' + if: ${{ github.event_name != 'workflow_call' }} with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.PUBLISH_DIR }}