Skip to content

Commit

Permalink
fix(iptvboss): fixing syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
groenator committed May 11, 2024
1 parent c6c41b2 commit d3bc06f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ jobs:
with:
context: .
build-args: |
LATEST_TAG=${{ env.LATEST_TAG }}-PR${{ github.event.number }}
LATEST_TAG=${{ env.LATEST_TAG }}
push: true
platforms: linux/amd64
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.LATEST_TAG }}-PR${{ github.event.number }}
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.LATEST_TAG }}-PR-${{ github.event.number }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=ma
Expand All @@ -116,10 +116,10 @@ jobs:
with:
context: .
build-args: |
LATEST_TAG=${{ env.LATEST_TAG }}-PR${{ github.event.number }}
LATEST_TAG=${{ env.LATEST_TAG }}
push: true
platforms: linux/arm64
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.LATEST_TAG }}-PR${{ github.event.number }}
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.LATEST_TAG }}-PR-${{ github.event.number }}-arm
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down

0 comments on commit d3bc06f

Please sign in to comment.