From c2ae6d768beacb0434d23f2ea6358691284fdb29 Mon Sep 17 00:00:00 2001 From: Sherd White Date: Tue, 24 Oct 2023 08:38:31 -0500 Subject: [PATCH] Update release.yaml Removing docker_build again. --- .github/workflows/release.yaml | 46 ---------------------------------- 1 file changed, 46 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3c14a99fe..617e29d44 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -31,49 +31,3 @@ jobs: tag: ${{ github.ref }} overwrite: true file_glob: true - - docker_build: - runs-on: ubuntu-22.04 - name: Docker Build - - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Generate image tags - shell: bash - run: echo "tags=quay.io/rebuy/aws-nuke:${GITHUB_REF#refs/tags/},docker.io/rebuy/aws-nuke:${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT - id: generate_tags - - - name: Set up QEMU - id: qemu - uses: docker/setup-qemu-action@v2 - with: - platforms: arm64 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - with: - install: true - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Login to Quay.io - uses: docker/login-action@v2 - with: - registry: quay.io - username: ${{ secrets.QUAY_USERNAME }} - password: ${{ secrets.QUAY_PASSWORD }} - - - name: Build and push - uses: docker/build-push-action@v3 - with: - context: . - push: true - tags: ${{ steps.generate_tags.outputs.tags }} - platforms: linux/amd64,linux/arm64