Publish image base on git repo name instead of hard coded to AWX (#15828)

This commit is contained in:
Hao Liu
2025-02-10 15:12:06 -05:00
committed by GitHub
parent 7d2b2d672c
commit e7440c6074
2 changed files with 8 additions and 4 deletions

View File

@@ -24,7 +24,10 @@ runs:
- name: Pre-pull latest devel image to warm cache
shell: bash
run: docker pull -q ghcr.io/${OWNER_LC}/awx_devel:${{ github.base_ref || github.ref_name }}
run: |
DEV_DOCKER_TAG_BASE=ghcr.io/${OWNER_LC} \
COMPOSE_TAG=${{ github.base_ref || github.ref_name }} \
docker pull -q `make print-DEVEL_IMAGE_NAME`
- name: Build image for current source checkout
shell: bash