Skip to content

Commit

Permalink
more debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hgherzog committed Nov 22, 2024
1 parent 84f17b5 commit 68a19a6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/forest_loss_driver_prediction.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,17 @@ jobs:
id: image-names
run: |-
GHCR_IMAGE="${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.build-push.outputs.digest }}"
GHCR_IMAGE=`echo ${GHCR_IMAGE} | tr '[:upper:]' '[:lower:]'`
echo "Debug: GHCR_IMAGE=${GHCR_IMAGE}"
echo "ghcr_image_name=${GHCR_IMAGE}" >> $GITHUB_OUTPUT
cat $GITHUB_OUTPUT
GHCR_IMAGE=`echo ${GHCR_IMAGE} | tr '[:upper:]' '[:lower:]'` # docker requires that all image names be lowercase
echo "ghcr.io Docker image name is ${GHCR_IMAGE}"
echo "ghcr_image_name=\"${GHCR_IMAGE}\"" >> $GITHUB_OUTPUT
predict:
needs: build
runs-on: ubuntu-latest-m
steps:
- name: Debug getting ghcr image name
run: |
echo "ghcr_image_name: ${{ needs.build.outputs.ghcr_docker_image }}"
echo "ghcr_image_name: ${{ needs.build.outputs.ghcr_image_name }}"
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 68a19a6

Please sign in to comment.