File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change 11name : nightly-master
22
3+ concurrency :
4+ group : ${{ github.workflow }}-${{ github.ref }}
5+ cancel-in-progress : true
6+
37on :
48 schedule :
59 - cron : " 0 0 * * *"
1014
1115jobs :
1216 build :
13- runs-on : ubuntu-latest
1417 strategy :
1518 matrix :
16- platform : [linux/amd64, linux/arm64]
19+ platform :
20+ - docker : linux/amd64
21+ runner : ubuntu-24.04
22+ - docker : linux/arm64
23+ runner : ubuntu-24.04-arm
1724 variant :
1825 - type : " "
1926 suffix : " "
2027 - type : " -alpine"
2128 suffix : " /alpine"
29+ runs-on : ${{ matrix.platform.runner }}
2230 steps :
2331 - name : Checkout
2432 uses : actions/checkout@v4
25- - name : Set up QEMU
26- uses : docker/setup-qemu-action@v3
33+
2734 - name : Set up Docker Buildx
2835 uses : docker/setup-buildx-action@v3
2936 with :
4451 uses : docker/build-push-action@v6
4552 with :
4653 context : master${{ matrix.variant.suffix }}
47- platforms : ${{ matrix.platform }}
54+ platforms : ${{ matrix.platform.docker }}
4855 push : ${{ github.event_name == 'schedule' }}
4956 tags : bitcoin/bitcoin:master${{ matrix.variant.type }}
5057 cache-from : type=gha
You can’t perform that action at this time.
0 commit comments