File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3636 uses : docker/login-action@v1
3737 with :
3838 registry : ghcr.io
39- username : ${{ secrets.DOCKER_GITHUB_USERNAME }}
40- password : ${{ secrets.DOCKER_GITHUB_PAT }}
39+ username : ${{ github.repository_owner }} # github username or org
40+ password : ${{ secrets.GITHUB_TOKEN }} # github actions builtin token. repo has to have pkg access.
4141
4242 # the arm64 is of course much slower due to qemu, so build and push amd64 **first**
4343 # due to the way manifests work, the gap between this and the complete push below
Original file line number Diff line number Diff line change 4949 uses : docker/login-action@v1
5050 with :
5151 registry : ghcr.io
52- username : ${{ secrets.DOCKER_GITHUB_USERNAME }}
53- password : ${{ secrets.DOCKER_GITHUB_PAT }}
52+ username : ${{ github.repository_owner }} # github username or org
53+ password : ${{ secrets.GITHUB_TOKEN }} # github actions builtin token. repo has to have pkg access.
5454
5555 # the arm64 is of course much slower due to qemu, so build and push amd64 **first**
5656 # due to the way manifests work, the gap between this and the complete push below
You can’t perform that action at this time.
0 commit comments