From 33473cd3876611c98657f87807db6eac1a693e16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=E1=B4=87=CA=80=C9=B4=E1=B4=85=20S=E1=B4=84=CA=9C?= =?UTF-8?q?=E1=B4=8F=CA=80=C9=A2=E1=B4=87=CA=80s?= Date: Fri, 17 Mar 2023 00:26:43 +0100 Subject: [PATCH] ci: Push image to GHCR (#153) * ci: Push image to GHCR * ci: Update build actions --- .github/workflows/ci.yml | 46 ++++++++++++++++++++++++---------------- 1 file changed, 28 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b92ba5..30a4758 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,54 +15,64 @@ jobs: build_and_test: runs-on: ubuntu-latest steps: - - + - name: Check out the repo - uses: actions/checkout@v2 - - - uses: actions/setup-node@v1 + uses: actions/checkout@v3 + - + uses: actions/setup-node@v3 with: node-version: '16' - - + - run: yarn install - - + - run: yarn test push_to_registry: - name: Push Docker image to Docker Hub + name: Push Docker image to Docker registries needs: build_and_test runs-on: ubuntu-latest steps: - - + - name: Check out the repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2 - name: Docker meta id: meta - uses: docker/metadata-action@v3 + uses: docker/metadata-action@v4 with: - images: simojenki/bonob + images: | + simojenki/bonob + ghcr.io/simojenki/bonob - name: Login to DockerHub if: github.event_name != 'pull_request' - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Push to Docker Hub - uses: docker/build-push-action@v2 + - + name: Log in to GitHub Container registry + if: github.event_name != 'pull_request' + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - + name: Push image + uses: docker/build-push-action@v4 with: context: . platforms: linux/amd64,linux/arm/v7,linux/arm64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file + labels: ${{ steps.meta.outputs.labels }}