Skip to content

Commit 45f7fd2

Browse files
Update github-actions.md
1 parent 41e1df9 commit 45f7fd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_docs/gitops-integrations/ci-integrations/github-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
password: ${{ secrets.DOCKERHUB_TOKEN }}
5858
- name: Build & push the Docker image
5959
env:
60-
CF_IMAGE: ${{ secrets.DOCKERHUB_USERNAME }}/build-by-github-action:0.0.1
60+
CF_IMAGE: docker.io/${{ secrets.DOCKERHUB_USERNAME }}/build-by-github-action:0.0.1
6161
run: |
6262
docker build . --file Dockerfile --tag $CF_IMAGE && docker push $CF_IMAGE
6363
echo "Image should be accessible to your local machine (after docker login) by:"
@@ -80,7 +80,7 @@ jobs:
8080
CF_GIT_BRANCH: 'main'
8181

8282
# Image path to enrich
83-
CF_IMAGE: ${{ secrets.DOCKERHUB_USERNAME }}/build-by-github-action:0.0.1
83+
CF_IMAGE: docker.io/${{ secrets.DOCKERHUB_USERNAME }}/build-by-github-action:0.0.1
8484

8585
# GitHub Access token !! Committing a plain text token is a security risk. We highly recommend using encrypted secrets. !!
8686
# Documentation - https://docs.github.com/en/actions/security-guides/encrypted-secrets

0 commit comments

Comments
 (0)