Skip to content

Commit

Permalink
docs :: CD
Browse files Browse the repository at this point in the history
  • Loading branch information
geunoo committed Dec 13, 2023
1 parent e989ed4 commit c8155ff
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ${{ secrets.DOCKER_HUB }}:latest

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Push the Docker image
run: docker push ${{ secrets.DOCKER_HUB }}:latest

Expand Down

0 comments on commit c8155ff

Please sign in to comment.