From e0d569e8b1df535283ddae00b3d5effa76867863 Mon Sep 17 00:00:00 2001 From: Bogdan Grosu Date: Thu, 7 Nov 2024 12:32:08 +0200 Subject: [PATCH] fix(workflow): update docker-publish.yml to use outputs from set-tag step for LATEST_TAG and BETA_TAG --- .github/workflows/docker-publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index c64dc18..4fe2f8e 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -110,7 +110,7 @@ jobs: platforms: linux/amd64,linux/arm64 labels: ${{ steps.meta.outputs.labels }} build-args: | - LATEST_TAG=${{ env.LATEST_TAG }} + LATEST_TAG=${{ steps.set-tag.outputs.LATEST_TAG }} tags: ${{ steps.meta.outputs.tags }} push: true context: . @@ -177,9 +177,9 @@ jobs: platforms: linux/amd64,linux/arm64 labels: ${{ steps.meta.outputs.labels }} build-args: | - BETA_TAG=${{ env.BETA_TAG }} + BETA_TAG=${{ steps.set-tag.outputs.BETA_TAG }} tags: | - ghcr.io/groenator/iptvboss-docker-beta:${{ env.BETA_TAG }} + ghcr.io/groenator/iptvboss-docker-beta:${{ steps.set-tag.outputs.BETA_TAG }} push: true context: . - name: Clean Buildx Cache