From 6e4553bd03fabbf2dbb2af76c0d238207b230fe1 Mon Sep 17 00:00:00 2001 From: Andrei Date: Mon, 20 May 2024 00:00:00 +0000 Subject: [PATCH] Uses `buildx` --- .github/workflows/push-image.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/push-image.yml b/.github/workflows/push-image.yml index 067731c..0c5d83b 100644 --- a/.github/workflows/push-image.yml +++ b/.github/workflows/push-image.yml @@ -16,7 +16,6 @@ jobs: permissions: contents: read packages: write - attestations: write steps: - name: Setup rust uses: actions-rs/toolchain@v1.0.6 @@ -27,22 +26,23 @@ jobs: uses: actions/checkout@v4 - name: Build release run: cargo build --release --bin server - - name: Log in to the Container registry - uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v1 + with: + install: true + + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 - with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - - name: Build and push Docker image - id: push - uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 - with: - context: . - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} + + - name: Build image + run: >- + docker buildx build --push + --file ./Dockerfile + --tag ghcr.io/$IMAGE_NAME:latest + .