Skip to content

Commit 2bf9b02

Browse files
authored
fix docker login (#196)
1 parent 9135cb4 commit 2bf9b02

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/docker.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ env:
2929
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
3030
ACTIONS_RUNNER_FORCED_INTERNAL_NODE_VERSION: node16
3131
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
32+
DOCKER_USER_NAME: ${{ secrets.DOCKER_FISCOPR_USER }}
33+
DOCKER_PASSWORD: ${{ secrets.DOCKER_FISCOPR_TOKEN }}
3234

3335
jobs:
3436
build_docker:
@@ -45,8 +47,8 @@ jobs:
4547
- name: Login to Docker Hub
4648
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3
4749
with:
48-
username: ${{ secrets.DOCKER_FISCOPR_USER }}
49-
password: ${{ secrets.DOCKER_FISCOPR_TOKEN }}
50+
username: ${{ env.DOCKER_USER_NAME }}
51+
password: ${{ env.DOCKER_PASSWORD }}
5052
- name: Get git tag
5153
uses: little-core-labs/[email protected]
5254
id: tag_data

0 commit comments

Comments
 (0)