Skip to content

Commit

Permalink
Merge pull request DSpace#10010 from tdonohue/fix_docker_build
Browse files Browse the repository at this point in the history
[GitHub Actions] Minor bug fix to Docker builds
  • Loading branch information
tdonohue authored Nov 15, 2024
2 parents 78bf61d + aa537c4 commit 78736a0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,10 @@ jobs:
env:
# Override defaults dspace.server.url because backend starts at http://127.0.0.1:8080
dspace__P__server__P__url: http://127.0.0.1:8080/server
# Force using "pr-testing" version of all Docker images. The "pr-testing" tag is a temporary tag that we
# assign to all PR-built docker images in reusabe-docker-build.yml
DSPACE_VER: pr-testing
# If this is a PR, force using "pr-testing" version of all Docker images. Otherwise, for branch commits, use the
# "latest" tag. NOTE: the "pr-testing" tag is a temporary tag that we assign to all PR-built docker images in
# reusabe-docker-build.yml
DSPACE_VER: ${{ github.event_name == 'pull_request' && 'pr-testing' || 'latest' }}
steps:
# Checkout our codebase (to get access to Docker Compose scripts)
- name: Checkout codebase
Expand Down

0 comments on commit 78736a0

Please sign in to comment.