Skip to content

Commit

Permalink
ci: use DOCKERHUB_TEMPLATE var instead of secret
Browse files Browse the repository at this point in the history
  • Loading branch information
TyIsI authored Jun 25, 2024
1 parent 68381fe commit e069c2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ secrets.DOCKERHUB_TEMPLATE }}
images: ${{ vars.DOCKERHUB_TEMPLATE }}
-
name: Login to DockerHub
if: github.event_name != 'pull_request'
Expand All @@ -38,5 +38,5 @@ jobs:
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}, ${{ secrets.DOCKERHUB_TEMPLATE }}:latest
tags: ${{ steps.meta.outputs.tags }}, ${{ vars.DOCKERHUB_TEMPLATE }}:latest
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit e069c2b

Please sign in to comment.