Skip to content

Commit

Permalink
fix(ci): change reference to env context to vars context
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobTheEldest committed May 11, 2023
1 parent 17554f2 commit 8db7c0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: docker/metadata-action@v4
with:
images: |
${{ env.DOCKER_HUB_REPO }}
${{ vars.DOCKER_HUB_REPO }}
ghcr.io/${{ github.repository }}
tags: |
type=semver,pattern={{version}}
Expand Down Expand Up @@ -58,6 +58,6 @@ jobs:
context: .
platforms: linux/amd64,linux/arm64 #,linux/arm/v7,linux/arm/v6
push: true
cache-from: type=registry,ref=${{ env.DOCKER_HUB_REPO }}:buildcache
cache-to: type=registry,ref=${{ env.DOCKER_HUB_REPO }}:buildcache,mode=max
cache-from: type=registry,ref=${{ vars.DOCKER_HUB_REPO }}:buildcache
cache-to: type=registry,ref=${{ vars.DOCKER_HUB_REPO }}:buildcache,mode=max
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit 8db7c0c

Please sign in to comment.