mirror of
https://github.com/ansible/awx.git
synced 2026-03-06 11:11:07 -03:30
🧪🚑 Fix fetching the CI image on merges (#15509)
This commit is contained in:
committed by
GitHub
parent
e68370f2aa
commit
a9b0d9f2e5
4
.github/actions/awx_devel_image/action.yml
vendored
4
.github/actions/awx_devel_image/action.yml
vendored
@@ -24,11 +24,11 @@ runs:
|
|||||||
|
|
||||||
- name: Pre-pull latest devel image to warm cache
|
- name: Pre-pull latest devel image to warm cache
|
||||||
shell: bash
|
shell: bash
|
||||||
run: docker pull -q ghcr.io/${OWNER_LC}/awx_devel:${{ github.base_ref }}
|
run: docker pull -q ghcr.io/${OWNER_LC}/awx_devel:${{ github.base_ref || github.ref_name }}
|
||||||
|
|
||||||
- name: Build image for current source checkout
|
- name: Build image for current source checkout
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
DEV_DOCKER_TAG_BASE=ghcr.io/${OWNER_LC} \
|
DEV_DOCKER_TAG_BASE=ghcr.io/${OWNER_LC} \
|
||||||
COMPOSE_TAG=${{ github.base_ref }} \
|
COMPOSE_TAG=${{ github.base_ref || github.ref_name }} \
|
||||||
make docker-compose-build
|
make docker-compose-build
|
||||||
|
|||||||
Reference in New Issue
Block a user