Correcting docker build call, removing old logic. RE:#1952

This commit is contained in:
James Douglass 2025-05-27 14:02:54 -07:00
parent d379a2d2d0
commit 3e78b6c044
1 changed files with 1 additions and 13 deletions

View File

@ -56,19 +56,7 @@ jobs:
run: |
# Replace / (invalid tag character) with .
SANITIZED_REF="$(echo ${{github.ref_name}} | sed 's|/|.|g')"
if [[ "${{github.event_name }}" == "pull_request" ]]
then
# If we're in a PR, build the container from the fork's source.
#INVEST_REPO="${{ github.event.pull_request.head.repo.full_name }}"
INVEST_REPO="${{ github.repository }}"
INVEST_VERSION="${{ github.event.pull_request.merge_commit_sha }}"
else
INVEST_REPO="${{ github.repository }}"
INVEST_VERSION="${{ github.sha }}"
fi
#--build-arg="INVEST_REPO=${INVEST_REPO}" \
#--build-arg="INVEST_VERSION=${INVEST_VERSION}" \
docker build -f docker/Dockerfile . \
docker build -f docker/Dockerfile \
-t ghcr.io/${{ github.repository_owner }}/${{ env.CONTAINER_NAME }}:latest \
-t ghcr.io/${{ github.repository_owner }}/${{ env.CONTAINER_NAME }}:${{ github.sha }} \
-t ghcr.io/${{ github.repository_owner }}/${{ env.CONTAINER_NAME }}:${SANITIZED_REF} \