diff --git a/language/python/configure-ci-cd.md b/language/python/configure-ci-cd.md index 796b7fbb2e..870b6672ce 100644 --- a/language/python/configure-ci-cd.md +++ b/language/python/configure-ci-cd.md @@ -100,7 +100,7 @@ Now, we can add the steps required. The first one checks-out our repository unde context: ./ file: ./Dockerfile push: true - tags: ushamandya/simplewhale:latest + tags: ${{ secrets.DOCKER_HUB_USERNAME }}/simplewhale:latest - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }} @@ -153,7 +153,7 @@ Using the cache we set up earlier for it to store to and to retrieve file: ./Dockerfile builder: ${{ steps.buildx.outputs.name }} push: true - tags: ushamandya/simplewhale:latest + tags: ${{ secrets.DOCKER_HUB_USERNAME }}/simplewhale:latest cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache - name: Image digest