From 7e01a0cfe2ad8d06075bfc66ef3860edbef033f8 Mon Sep 17 00:00:00 2001 From: Anastasiia Derymarko Date: Tue, 10 May 2022 12:12:28 +0300 Subject: [PATCH] chore: publish dockerhub (#1971) --- .github/workflows/publish.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cd5b34de51..8beb2e59d8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -98,3 +98,37 @@ jobs: run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + dockerhub: + needs: [publish] + 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: redocly/redoc + + - 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 + 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: ./config/docker/Dockerfile + platforms: linux/amd64,linux/arm64 + push: true + tags: ${{ steps.docker_meta.outputs.tags }} + labels: ${{ steps.docker_meta.outputs.labels }}