From 5a008d9c3a4b2af5a1c3e394f94b2b2c3142090c Mon Sep 17 00:00:00 2001 From: nitrocode <7775707+nitrocode@users.noreply.github.com> Date: Mon, 10 Apr 2023 18:16:33 -0500 Subject: [PATCH] fix(atlantis-image): rm redundant dev push, correct authors (#3306) --- .github/workflows/atlantis-image.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/workflows/atlantis-image.yml b/.github/workflows/atlantis-image.yml index 4f9a0cdd36..504ad60612 100644 --- a/.github/workflows/atlantis-image.yml +++ b/.github/workflows/atlantis-image.yml @@ -63,7 +63,7 @@ jobs: images: | ${{ env.DOCKER_REPO }} labels: | - org.opencontainers.image.authors="Anubhav Mishra, Luke Kysow" + org.opencontainers.image.authors="@runatlantis Github Org" org.opencontainers.image.licenses=Apache-2.0 tags: | # semver @@ -94,22 +94,6 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - # Publish dev image to container registry - - name: Build and push atlantis:dev${{ env.IMAGE_SUFFIX }} image - if: ${{ contains(fromJson('["push", "pull_request"]'), github.event_name) }} - uses: docker/build-push-action@v3 - with: - cache-from: type=gha - cache-to: type=gha,mode=max - context: . - platforms: linux/arm64/v8,linux/amd64,linux/arm/v7 - push: ${{ github.event_name != 'pull_request' }} - tags: | - ghcr.io/${{ github.repository_owner }}/atlantis:dev${{ env.IMAGE_SUFFIX }} - ghcr.io/${{ github.repository_owner }}/atlantis:dev-${{ matrix.image_type }} - target: ${{ matrix.image_type }} - labels: ${{ steps.meta.outputs.labels }} - # Publish release to container registry - name: Populate release version if: contains(fromJson('["push", "pull_request"]'), github.event_name)