From eb96fcbf76f34f3241facaf695771c1492bcfed0 Mon Sep 17 00:00:00 2001 From: Roman Sotnikov Date: Sun, 22 Feb 2026 16:17:44 +0300 Subject: [PATCH] fix: fix push image to telemt --- .github/workflows/release.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2fad8a7..16294af 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -90,6 +90,9 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 @@ -101,14 +104,12 @@ jobs: password: ${{ secrets.TOKEN_GH_DEPLOY }} - name: Build and push - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v6 with: context: . - platforms: linux/amd64,linux/arm64 push: true - tags: | - ghcr.io/telemt/telemt:latest - ghcr.io/telemt/telemt:${{github.ref_name}} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} release: name: Create Release