Skip to content

Commit

Permalink
Change GH Actions to use env for docker tag template
Browse files Browse the repository at this point in the history
  • Loading branch information
TyIsI authored May 18, 2024
1 parent 0b3f8d9 commit 0c32bed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKERHUB_TEMPLATE }}
images: ${{ env.DOCKERHUB_TEMPLATE }}

- name: Login to DockerHub
if: github.event_name != 'pull_request'
Expand All @@ -33,5 +33,5 @@ jobs:
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}, ${{ secrets.DOCKERHUB_TEMPLATE }}:latest
tags: ${{ steps.meta.outputs.tags }}, ${{ env.DOCKERHUB_TEMPLATE }}:latest
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 0c32bed

Please sign in to comment.