.gitea: update release build actions (#31886)

Trying to make the docker build work.
This commit is contained in:
Felix Lange 2025-05-23 12:44:30 +02:00 committed by GitHub
parent 94481d1351
commit 8f598e85ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,18 +11,24 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: 1.23.0 go-version: 1.24
cache: false cache: false
- name: Run docker build - name: Run docker build
run: | run: |
go run build/ci.go docker -platform linux/amd64,linux/arm64 go run build/ci.go dockerx -platform linux/amd64,linux/arm64,linux/riscv64
linux: linux:
name: Docker Image name: Linux Build
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -30,7 +36,7 @@ jobs:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: 1.23.0 go-version: 1.24
cache: false cache: false
- name: Run build - name: Run build