We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1aa7e7 commit cd0ca84Copy full SHA for cd0ca84
1 file changed
.github/workflows/docker-publish.yml
@@ -15,7 +15,7 @@ jobs:
15
- name: Prepare
16
id: prep
17
run: |
18
- DOCKERHUB_IMAGE=${{ env.DOCKER_USERNAME }}/${{ github.action_repository }}
+ DOCKERHUB_IMAGE=${{ vars.DOCKER_USERNAME }}/${{ github.action_repository }}
19
GHCR_IMAGE=ghcr.io/${{ github.repository }}
20
VERSION=${GITHUB_REF#refs/tags/v}
21
MINOR=${VERSION%.*}
@@ -41,7 +41,7 @@ jobs:
41
- name: Login to DockerHub
42
uses: docker/login-action@v3
43
with:
44
- username: ${{ secrets.DOCKER_USERNAME }}
+ username: ${{ vars.DOCKER_USERNAME }}
45
password: ${{ secrets.DOCKER_PASSWORD }}
46
47
- name: Login to Github Container Registry
0 commit comments