Skip to content

Commit

Permalink
ci(mpa2065): separate docker steps to see where its failing
Browse files Browse the repository at this point in the history
  • Loading branch information
mirestrepo committed Aug 2, 2024
1 parent 136eab2 commit e68fd61
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/mpa2065.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,20 @@ jobs:
- name: Configure Docker
run: gcloud auth configure-docker ${{ env.REGION }}-docker.pkg.dev --quiet

- name: Build and Push JH Image
- name: Build JH Image
run: |
COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker compose up jh_image
- name: List JH Image
run: |
docker images
- name: Tag JH Image
run: |
docker tag jupyterhub-docker-images_jh_image:latest ${{ env.GAR_LOCATION}}:${GITHUB_REF##*/}
docker tag jupyterhub-docker-images_jh_image:latest ${{ env.GAR_LOCATION}}:latest
- name: Push JH Image
run: |
docker push ${{ env.GAR_LOCATION}}:latest
docker push ${{ env.GAR_LOCATION}}:${GITHUB_REF##*/}
docker push ${{ env.GAR_LOCATION}}:${GITHUB_REF##*/}

0 comments on commit e68fd61

Please sign in to comment.