go-ethereum/.gitea/workflows/release.yml
Felix Lange b97198379b
Some checks are pending
Release Builds (push) / Linux Build (push) Waiting to run
Release Builds (push) / Docker Image (push) Waiting to run
.gitea: add cron build script (#31890)
Also swaps the push build scripts and adds environment output.
2025-05-23 16:21:08 +02:00

48 lines
900 B
YAML

name: Release Builds (push)
on:
push:
branches: [ master ]
jobs:
linux:
name: Linux Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24
cache: false
- name: display environment
run: |
env
- name: Run build
run: |
go run build/ci.go install
docker:
name: Docker Image
runs-on: ubuntu-latest
steps:
- 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
uses: actions/setup-go@v5
with:
go-version: 1.24
cache: false
- name: Run docker build
run: |
go run build/ci.go dockerx -platform linux/amd64,linux/arm64,linux/riscv64