66 image-name :
77 required : true
88 type : string
9- secrets :
10- GITHUB_TOKEN :
11- required : true
129
1310jobs :
1411 build-amd64 :
1512 runs-on : ubuntu-latest
1613 env :
17- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
14+ GITHUB_TOKEN : ${{ github.token }}
1815
1916 steps :
2017 - uses : actions/checkout@v4
2320 with :
2421 registry : ghcr.io
2522 username : ${{ github.actor }}
26- password : ${{ secrets.GITHUB_TOKEN }}
23+ password : ${{ github.token }}
2724 - name : install rops
2825 run : |
2926 curl -L https://raw.githubusercontent.com/quantmind/rops/main/dev/install-rops | bash
3633 build-arm64 :
3734 runs-on : ubuntu-24.04-arm
3835 env :
39- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
36+ GITHUB_TOKEN : ${{ github.token }}
4037
4138 steps :
4239 - uses : actions/checkout@v4
4542 with :
4643 registry : ghcr.io
4744 username : ${{ github.actor }}
48- password : ${{ secrets.GITHUB_TOKEN }}
45+ password : ${{ github.token }}
4946 - name : install rops
5047 run : |
5148 curl -L https://raw.githubusercontent.com/quantmind/rops/main/dev/install-rops | bash
@@ -59,15 +56,15 @@ jobs:
5956 needs : [build-amd64, build-arm64]
6057 runs-on : ubuntu-latest
6158 env :
62- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
59+ GITHUB_TOKEN : ${{ github.token }}
6360 steps :
6461 - uses : actions/checkout@v4
6562 - name : Login to GitHub Container Registry
6663 uses : docker/login-action@v3
6764 with :
6865 registry : ghcr.io
6966 username : ${{ github.actor }}
70- password : ${{ secrets.GITHUB_TOKEN }}
67+ password : ${{ github.token }}
7168 - name : install rops
7269 run : |
7370 curl -L https://raw.githubusercontent.com/quantmind/rops/main/dev/install-rops | bash
0 commit comments