Skip to content

Commit

Permalink
Fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas committed Jul 23, 2024
1 parent 6f56923 commit 77b184a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/docker-build-test-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,13 @@ jobs:
# as is the case for PRs from forks. Hence this super-ugly ternary expression...
# For forks, we take the image as ghcr.io/aiidalab/qe:pr-XXX
# which is stored in the steps.meta.outputs.tags variable
QE_IMAGE: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork && steps.meta.outputs.tags || format({}@{},
env.IMAGE, steps.build-upload.outputs.imageid) }}
QE_IMAGE: >
${{
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.fork &&
steps.meta.outputs.tags ||
format('{}@{}', env.IMAGE, steps.build-upload.outputs.imageid)
}}
- name: Upload screenshots as artifacts
if: always()
Expand Down

0 comments on commit 77b184a

Please sign in to comment.