File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 2222 matrix :
2323 version : ['29.1', '30.0rc1']
2424 fail-fast : false
25+ env :
26+ USERNAME : bitcoin
2527 steps :
2628 - name : Checkout
2729 uses : actions/checkout@v4
@@ -33,10 +35,12 @@ jobs:
3335 github_access_token : ${{ secrets.GITHUB_TOKEN }}
3436
3537 - name : Setup Cachix
36- uses : cachix/cachix-action@v14
38+ uses : cachix/cachix-action@v15
3739 with :
3840 name : bitcoin-core-docker
39- skipPush : true
41+ authToken : " ${{ secrets.CACHIX_AUTH_TOKEN }}"
42+
43+ - uses : extractions/setup-just@v3
4044
4145 - name : Set up Docker Buildx
4246 uses : docker/setup-buildx-action@v3
@@ -45,14 +49,14 @@ jobs:
4549 if : startsWith(github.ref, 'refs/tags/v')
4650 uses : docker/login-action@v3
4751 with :
48- username : bitcoin
52+ username : ${{ env.USERNAME }}
4953 password : ${{ secrets.DOCKER_HUB_PASSWORD }}
5054
5155 - name : Build images
5256 run : |
53- nix run .# build-all- ${{ matrix.version }}
57+ just build-all ${{ matrix.version }}
5458
5559 - name : Push images
5660 if : startsWith(github.ref, 'refs/tags/v')
5761 run : |
58- nix run .# push- ${{ matrix.version }}
62+ just push ${{ matrix.version }} docker.io/${{ env.USERNAME }}
You can’t perform that action at this time.
0 commit comments