Skip to content

Commit

Permalink
Merge pull request #172 from pulumi/pat
Browse files Browse the repository at this point in the history
Fix GHCR sync token
  • Loading branch information
blampe authored Oct 30, 2023
2 parents f6e0e28 + b6fe352 commit e65f469
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/sync-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
uses: docker/login-action@v1
with:
registry: ghcr.io
username: pulumibot
password: ${{ secrets.PULUMI_BOT_TOKEN }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Tag ${{ env.PULUMI_VERSION }} and push to GHCR
run: |
docker pull docker.io/${{ env.DOCKER_USERNAME }}/${{ matrix.image }}:${{ env.PULUMI_VERSION }}
Expand Down Expand Up @@ -75,8 +75,8 @@ jobs:
uses: docker/login-action@v1
with:
registry: ghcr.io
username: pulumibot
password: ${{ secrets.PULUMI_BOT_TOKEN }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Tag ${{ env.PULUMI_VERSION }}-debian-amd64 image and push to GHCR
run: |
docker pull docker.io/${{ env.DOCKER_USERNAME }}/${{ matrix.image }}:${{ env.PULUMI_VERSION }}-debian-amd64
Expand Down Expand Up @@ -130,8 +130,8 @@ jobs:
uses: docker/login-action@v1
with:
registry: ghcr.io
username: pulumibot
password: ${{ secrets.PULUMI_BOT_TOKEN }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Tag ${{ env.PULUMI_VERSION }}-ubi image and push to GHCR
run: |
docker pull docker.io/${{ env.DOCKER_USERNAME }}/${{ matrix.image }}:${{ env.PULUMI_VERSION }}-ubi
Expand Down

0 comments on commit e65f469

Please sign in to comment.