diff options
author | Sviatoslav Sydorenko (Святослав Сидоренко) <wk@sydorenko.org.ua> | 2024-09-13 20:42:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 20:42:48 +0200 |
commit | 6bfe76d6d1a93c850739e8acac73ab04da111cbb (patch) | |
tree | d23f7736e80beae4aaba64412060a662867ccf4d /.github | |
parent | 🧪🚑 Fix fetching the CI image on merges (#15509) (diff) | |
download | awx-6bfe76d6d1a93c850739e8acac73ab04da111cbb.tar.xz awx-6bfe76d6d1a93c850739e8acac73ab04da111cbb.zip |
🧪🚑 Fix running awx image in CI on merge (#15510)
This is a variation of #15509, fixing the `run_awx_devel` in-tree
action this time.
Diffstat (limited to '.github')
-rw-r--r-- | .github/actions/run_awx_devel/action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/run_awx_devel/action.yml b/.github/actions/run_awx_devel/action.yml index 8144f3c26b..59eb33f62c 100644 --- a/.github/actions/run_awx_devel/action.yml +++ b/.github/actions/run_awx_devel/action.yml @@ -36,7 +36,7 @@ runs: shell: bash run: | DEV_DOCKER_OWNER=${{ github.repository_owner }} \ - COMPOSE_TAG=${{ github.base_ref }} \ + COMPOSE_TAG=${{ github.base_ref || github.ref_name }} \ COMPOSE_UP_OPTS="-d" \ make docker-compose |