From 5d97d1259cb67f7ae7725dc89a50ced7fe75849c Mon Sep 17 00:00:00 2001 From: nitrocode <7775707+nitrocode@users.noreply.github.com> Date: Sat, 25 Feb 2023 14:36:13 -0600 Subject: [PATCH] fix: push image to repo name without org (#3164) --- .github/workflows/atlantis-image.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/atlantis-image.yml b/.github/workflows/atlantis-image.yml index c7355f5301..b58895d85d 100644 --- a/.github/workflows/atlantis-image.yml +++ b/.github/workflows/atlantis-image.yml @@ -1,6 +1,5 @@ name: atlantis-image - on: push: branches: @@ -26,7 +25,7 @@ jobs: runs-on: ubuntu-22.04 env: # Set docker repo to either the fork or the main repo where the branch exists - DOCKER_REPO: ${{ github.repository }} + DOCKER_REPO: atlantis # Push if not a pull request or this is a fork PUSH: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}