Skip to content

Commit

Permalink
Ensure we use the main Docker image, and not the "-test" image.
Browse files Browse the repository at this point in the history
  • Loading branch information
tdonohue committed Dec 9, 2024
1 parent 1800d16 commit 5d324b1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@ jobs:
signposting__P__enabled: true
sword__D__server__P__enabled: true
swordv2__D__server__P__enabled: true
# If this is a PR, used the base branch name. If on main branch, use the "latest" tag. Otherwise, use branch name.
# NOTE: DSPACE_VER is used because our docker compose scripts default to using the "-test" image.
DSPACE_VER: ${{ (github.event_name == 'pull_request' && github.event.pull_request.base.ref) || (github.ref_name == github.event.repository.default_branch && 'latest') || github.ref_name }}
steps:
# Checkout our codebase (to get access to Docker Compose scripts)
- name: Checkout codebase
Expand Down

0 comments on commit 5d324b1

Please sign in to comment.