Skip to content

Commit a4dacdc

Browse files
committed
fix: update Docker image name and push command in workflow for consistency
1 parent 0be9a6d commit a4dacdc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/docs.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ jobs:
100100

101101
- name: Build Docker Image
102102
run: |
103-
docker build -t docusaurus-docs -f dockerfile .
103+
docker build -t pvarki/pvarkidocs:latest -f dockerfile .
104+
104105
105106
- name: Package Docker Image
106107
run: docker save docusaurus-docs -o ${{ github.workspace }}/docusaurus-docs.tar
@@ -129,6 +130,8 @@ jobs:
129130

130131
- name: Log in to Docker Hub
131132
run: echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
133+
132134

133135
- name: Push Docker Image to Docker Hub
134-
run: docker push docusaurus-docs
136+
run: |
137+
docker push pvarki/pvarkidocs:latest

0 commit comments

Comments
 (0)