Skip to content

Commit

Permalink
remove sha encrypt
Browse files Browse the repository at this point in the history
  • Loading branch information
jrodriguezs2020 committed Jan 9, 2025
1 parent 9d72411 commit be04ea6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Login to docker
run: docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" -p "${{ secrets.DOCKERHUB_TOKEN }}"
- name: Build the docker image
run: docker build -f Docker/Dockerfile -t ${{ secrets.DOCKERHUB_IMAGE }}:${{ github.sha }} .
run: docker build -f Docker/Dockerfile -t ${{ secrets.DOCKERHUB_IMAGE }} .

## Step 3: Image Execution and Wait to Image Start
- name: Setup docker compose
Expand All @@ -41,6 +41,6 @@ jobs:
- name: Stop docker compose
run: docker-compose down
- name: Push the docker image
run: docker push ${{ secrets.DOCKERHUB_IMAGE }}:${{ github.sha }}
run: docker push ${{ secrets.DOCKERHUB_IMAGE }}
- name: Push the docker image
run: docker push ${{ secrets.DOCKERHUB_IMAGE }}:${{ github.sha }}
run: docker push ${{ secrets.DOCKERHUB_IMAGE }}

0 comments on commit be04ea6

Please sign in to comment.