Skip to content

Commit

Permalink
fix(workflow): update docker-publish.yml to use outputs from set-tag …
Browse files Browse the repository at this point in the history
…step for LATEST_TAG and BETA_TAG
  • Loading branch information
bgrosucisco committed Nov 7, 2024
1 parent 040c92a commit e0d569e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: .
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e0d569e

Please sign in to comment.