From 743b2c1bf4e37bb150bbfd4256402b39f621581e Mon Sep 17 00:00:00 2001 From: Amrit Date: Thu, 21 Jan 2021 23:32:51 -0600 Subject: [PATCH 1/3] Create deploy.yml --- .github/workflows/deploy.yml | 54 ++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..8c2d5f2 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,54 @@ +# This is a basic workflow to help you get started with Actions + +name: CD + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [ master ] + pull_request: + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + docker: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v2 + - + name: Docker meta + id: docker_meta + uses: crazy-max/ghaction-docker-meta@v1 + with: + images: schollz/croc + # tag-semver: "{{version}}" + tag-sha: true + tag-latest: true + - + name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - + name: Login to DockerHub + if: github.event_name != 'pull_request' + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Build and push + uses: docker/build-push-action@v2 + with: + context: . + file: ./Dockerfile + platforms: linux/amd64,linux/arm,linux/arm64,linux/386,linux/ppc64le,linux/s390x + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.docker_meta.outputs.tags }} + labels: ${{ steps.docker_meta.outputs.labels }} From 6b8a14d831180d5335c3a4a3a8e4f5ac6e841cf7 Mon Sep 17 00:00:00 2001 From: Spaceface16518 Date: Thu, 21 Jan 2021 23:47:30 -0600 Subject: [PATCH 2/3] Remove linux/s390x platform Breaking the docker buildx build due to some signature verification error --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8c2d5f2..e0b22a3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -48,7 +48,7 @@ jobs: with: context: . file: ./Dockerfile - platforms: linux/amd64,linux/arm,linux/arm64,linux/386,linux/ppc64le,linux/s390x + platforms: linux/amd64,linux/arm,linux/arm64,linux/386,linux/ppc64le push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.docker_meta.outputs.tags }} labels: ${{ steps.docker_meta.outputs.labels }} From 247d2b18ecb07e9176f94846828735067b4e6601 Mon Sep 17 00:00:00 2001 From: Spaceface16518 Date: Thu, 21 Jan 2021 23:54:00 -0600 Subject: [PATCH 3/3] Remove linux/ppc64le platform gcc not found in $PATH? --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e0b22a3..8bc2109 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -48,7 +48,7 @@ jobs: with: context: . file: ./Dockerfile - platforms: linux/amd64,linux/arm,linux/arm64,linux/386,linux/ppc64le + platforms: linux/amd64,linux/arm,linux/arm64,linux/386 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.docker_meta.outputs.tags }} labels: ${{ steps.docker_meta.outputs.labels }}