Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
brian030128 committed Jun 24, 2024
1 parent 97b834f commit 022b0d0
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
env:
DOCKER_REGISTRY_HOST: ${{ secrets.DOCKER_REGISTRY_HOST }}
DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }}
DOCKER_REGISTRY_PWD: ${{ secrets.DOCKER_REGISTRY_PWD }}
- name: test
run: echo ${{ secrets.DOCKER_REGISTRY_PWD }}
- name: test2
run: echo ${DOCKER_REGISTRY_PWD}
- name: Log in to Docker Hub
run: echo "${DOCKER_REGISTRY_PWD}" | docker login "${DOCKER_REGISTRY_HOST}" --username "${DOCKER_REGISTRY_USER}" --password-stdin
run: echo ${{ secrets.DOCKER_REGISTRY_PWD }} | docker login ${{ secrets.DOCKER_REGISTRY_HOST }} --username ${{ secrets.DOCKER_REGISTRY_USER }} --password-stdin

- name: Build and push Docker image
run: make docker_push

0 comments on commit 022b0d0

Please sign in to comment.