Skip to content

Commit

Permalink
fix: docker login variables
Browse files Browse the repository at this point in the history
  • Loading branch information
devrsi0n committed Oct 1, 2022
1 parent f62f760 commit a976397
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
branches: [prod]

jobs:
push_builder:
name: Builder
build_push_chirpy:
name: Chirpy
runs-on: ubuntu-latest
steps:
- name: Check out the repo
Expand All @@ -37,8 +37,8 @@ jobs:
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push builder image
uses: docker/build-push-action@v3
Expand Down

0 comments on commit a976397

Please sign in to comment.