Skip to content

Commit 78a147c

Browse files
authored
Merge pull request #16 from crazy-max/fix-workflow
ci: use correct secrets
2 parents 88688d4 + 3c0c9d9 commit 78a147c

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/buildkit-image.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
if: ${{ inputs.push }}
4242
uses: docker/login-action@v2
4343
with:
44-
username: ${{ secrets.DOCKERBUILDBOT_USERNAME }}
45-
password: ${{ secrets.DOCKERBUILDBOT_WRITE_PAT }}
44+
username: ${{ secrets.DOCKERPUBLICBOT_USERNAME }}
45+
password: ${{ secrets.DOCKERPUBLICBOT_WRITE_PAT }}
4646
-
4747
name: Create
4848
run: |

.github/workflows/ci.yaml

+4-5
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
5959
if: github.event_name != 'pull_request'
6060
uses: docker/login-action@v2
6161
with:
62-
username: ${{ secrets.DOCKERBUILDBOT_USERNAME }}
63-
password: ${{ secrets.DOCKERBUILDBOT_WRITE_PAT }}
62+
username: ${{ secrets.DOCKERPUBLICBOT_USERNAME }}
63+
password: ${{ secrets.DOCKERPUBLICBOT_WRITE_PAT }}
6464
-
6565
name: Build
6666
uses: docker/bake-action@v2
@@ -80,7 +80,6 @@ jobs:
8080
if: github.event_name != 'pull_request'
8181
uses: peter-evans/dockerhub-description@v3
8282
with:
83-
username: ${{ secrets.DOCKERBUILDBOT_USERNAME }}
84-
password: ${{ secrets.DOCKERBUILDBOT_WRITE_PAT }}
83+
username: ${{ secrets.DOCKERPUBLICBOT_USERNAME }}
84+
password: ${{ secrets.DOCKERPUBLICBOT_DELETE_PAT }}
8585
repository: ${{ env.DOCKERHUB_SLUG }}
86-

0 commit comments

Comments
 (0)