Merge pull request #10011 from DSpace/backport-10010-to-dspace-7_x

[Port dspace-7_x] [GitHub Actions] Minor bug fix to Docker deployment builds
This commit is contained in:
Tim Donohue
2024-11-15 10:26:42 -06:00
committed by GitHub

View File

@@ -161,9 +161,10 @@ jobs:
env: env:
# Override defaults dspace.server.url because backend starts at http://127.0.0.1:8080 # 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 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 # If this is a PR, force using "pr-testing" version of all Docker images. Otherwise, for branch commits, use the
# assign to all PR-built docker images in reusabe-docker-build.yml # "latest" tag. NOTE: the "pr-testing" tag is a temporary tag that we assign to all PR-built docker images in
DSPACE_VER: pr-testing # reusabe-docker-build.yml
DSPACE_VER: ${{ github.event_name == 'pull_request' && 'pr-testing' || 'latest' }}
steps: steps:
# Checkout our codebase (to get access to Docker Compose scripts) # Checkout our codebase (to get access to Docker Compose scripts)
- name: Checkout codebase - name: Checkout codebase