From d2dad86abe53cbd5dec7a9e4713a4e2e1ae9c967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marques?= Date: Wed, 25 Nov 2020 11:09:46 +0000 Subject: [PATCH] Try multi-platform builds and push to ghcr.io --- .github/workflows/test.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 20ef7a9..1f43ede 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -51,3 +51,34 @@ jobs: - run: poetry install # Run tests - run: poetry run pytest + build-push: + runs-on: ubuntu-latest + needs: test + env: + DOCKER_REGISTRY_PASSWORD: ${{ secrets.BOT_TOKEN }} + DOCKER_REGISTRY_USERNAME: ${{ secrets.BOT_LOGIN }} + DOCKER_REGISTRY: ghcr.io + DOCKER_REPO: tecnativa/docker-socket-proxy + steps: + # Prepare + - uses: actions/checkout@v2 + - uses: docker/setup-qemu-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + # Build and push + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ env.DOCKER_REGISTRY_USERNAME }} + password: ${{ env.DOCKER_REGISTRY_PASSWORD }} + - name: Build and push + uses: docker/build-push-action@v2 + with: + context: . + file: ./Dockerfile + platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm/v8,linux/arm64,linux/ppc64le,linux/s390x + load: false + push: true + tags: | + ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_REPO }}