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 36
36
uses : docker/login-action@v1
37
37
with :
38
38
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.
41
41
42
42
# the arm64 is of course much slower due to qemu, so build and push amd64 **first**
43
43
# 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 49
49
uses : docker/login-action@v1
50
50
with :
51
51
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.
54
54
55
55
# the arm64 is of course much slower due to qemu, so build and push amd64 **first**
56
56
# 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