File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed
Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change 55 tags :
66 - " *.*"
77 - " *.*.*"
8+ # Allows you to run this workflow manually from the Actions tab
9+ workflow_dispatch :
10+
11+ concurrency :
12+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref }}
13+ cancel-in-progress : true
814
915jobs :
1016 build :
1117 name : Build
12- runs-on : ubuntu-20 .04
18+ runs-on : ubuntu-24 .04
1319 steps :
1420 - uses : actions/checkout@v1
1521
@@ -20,25 +26,23 @@ jobs:
2026
2127 - name : Set up QEMU
2228 id : qemu
23- uses : docker/setup-qemu-action@v1
24-
25- - name : Available platforms
26- run : echo ${{steps.qemu.outputs.platforms}}
29+ uses : docker/setup-qemu-action@v3
30+ with :
31+ cache-image : false
2732
2833 - name : Set up Docker Buildx
29- uses : docker/setup-buildx-action@v1
34+ uses : docker/setup-buildx-action@v3
3035
3136 - name : Log in to the GitHub Container registry
3237 uses : docker/login-action@v2
3338 with :
3439 registry : ghcr.io
3540 username : ${{ github.actor }}
3641 password : ${{ secrets.GITHUB_TOKEN }}
37-
3842 - name : Run checks
3943 run : |
4044 make ci
4145
4246 - name : Build
4347 run : |
44- make push
48+ make release
You can’t perform that action at this time.
0 commit comments