Try to use mr-smithers-excellent/docker-build-push@v6 action #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and push godaddy webhook image | ||
on: | ||
pull_request: | ||
branches: [ main ] | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
build_push_image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
#- name: Install go 1.16 | ||
# uses: actions/setup-go@v2 | ||
# with: | ||
# go-version: 1.16 | ||
- uses: mr-smithers-excellent/docker-build-push@v6 | ||
name: Build & push Docker image | ||
with: | ||
image: snowdrop/cert-manager-webhook-godaddy | ||
platforms: 'amd64', 'arm64' | ||
addLatest: true | ||
multiPlatform: true | ||
platform: linux/amd64,linux/arm64 | ||
registry: quay.io | ||
username: ${{ secrets.QUAY_ROBOT_USER }} | ||
password: ${{ secrets.QUAY_ROBOT_TOKEN }} | ||
#- name: Build the container image | ||
# run: | | ||
# VERSION=$(git rev-parse --short HEAD 2>/dev/null) | ||
# docker buildx build --platform linux/${{ matrix.arch }} --load --tag cert-manager-webhook-godaddy:${VERSION} -f Dockerfile . | ||
# | ||
# TAG_ID=$(docker images -q cert-manager-webhook-godaddy:${VERSION}) | ||
# echo "Tagging the images using as tag id: ${TAG_ID} and version: ${VERSION}" | ||
# | ||
# docker tag ${TAG_ID} quay.io/snowdrop/cert-manager-webhook-godaddy:${VERSION} | ||
# docker tag ${TAG_ID} quay.io/snowdrop/cert-manager-webhook-godaddy:latest | ||
# | ||
# docker push quay.io/snowdrop/cert-manager-webhook-godaddy:${VERSION} | ||
# docker push quay.io/snowdrop/cert-manager-webhook-godaddy:latest |