Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgensd committed Feb 9, 2024
1 parent 001eb62 commit 9d0e4d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit 9d0e4d7

Please sign in to comment.