Skip to content

Commit

Permalink
fix docker login (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyjseagull authored Dec 12, 2024
1 parent 9135cb4 commit 2bf9b02
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
ACTIONS_RUNNER_FORCED_INTERNAL_NODE_VERSION: node16
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
DOCKER_USER_NAME: ${{ secrets.DOCKER_FISCOPR_USER }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_FISCOPR_TOKEN }}

jobs:
build_docker:
Expand All @@ -45,8 +47,8 @@ jobs:
- name: Login to Docker Hub
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3
with:
username: ${{ secrets.DOCKER_FISCOPR_USER }}
password: ${{ secrets.DOCKER_FISCOPR_TOKEN }}
username: ${{ env.DOCKER_USER_NAME }}
password: ${{ env.DOCKER_PASSWORD }}
- name: Get git tag
uses: little-core-labs/[email protected]
id: tag_data
Expand Down

0 comments on commit 2bf9b02

Please sign in to comment.