Skip to content

Commit

Permalink
manual build action - adding debugging stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
Castronova authored Mar 19, 2024
1 parent 51d81fb commit ff10271
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/manual-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ jobs:
- name: Push Docker Image
if: ${{ inputs.push-to-dockerhub }}
run: |
echo "Begin Image Tagging and Pushing"
# use BUILD_DATE in the tag
# unless we're building the 'base' image
if [ ${{ inputs.image }} == "base" ]; then
Expand All @@ -90,10 +91,14 @@ jobs:
fi
export DOCKER_FULL_PATH="${REPOSITORY}/${IMAGE_ROOT}-${{ inputs.image }}:${{ inputs.code-branch }}-latest"
echo "Old Image Name/Tag = $DOCKER_TAG"
echo "New Image Name/Tag = $DOCKER_FULL_PATH"
echo "DOCKER_FULL_PATH=$DOCKER_FULL_PATH" >> $GITHUB_ENV
echo $DOCKER_FULL_PATH
docker tag $DOCKER_TAG $DOCKER_FULL_PATH
docker push $DOCKER_FULL_PATH
echo "End Image Tagging and Pushing"

0 comments on commit ff10271

Please sign in to comment.