We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c833e6 commit 00e7faaCopy full SHA for 00e7faa
.github/workflows/dockerimage.yml
@@ -13,6 +13,8 @@ jobs:
13
- name: Build the Docker image
14
run: docker build . --file Dockerfile --tag docker.pkg.github.com/dipayan90/${GITHUB_REPOSITORY}:${GITHUB_SHA} --tag docker.pkg.github.com/dipayan90/${GITHUB_REPOSITORY}:latest
15
- name: Login to Github docker Registry
16
- run: docker login docker.pkg.github.com --username dipayan90 --password ${GITHUB_PASSWORD}
+ with:
17
+ github_password: ${{secrets.GITHUB_PASSWORD}}
18
+ run: docker login docker.pkg.github.com --username dipayan90 --password github_password
19
- name: Push Image To Registry
20
run: docker push docker.pkg.github.com/dipayan90/${GITHUB_REPOSITORY}:${GITHUB_SHA} && docker push docker.pkg.github.com/dipayan90/${GITHUB_REPOSITORY}:latest
0 commit comments