mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 07:37:20 +00:00
.gitea: add initial workflow file (#31885)
This commit is contained in:
parent
f21adaf245
commit
94481d1351
1 changed files with 38 additions and 0 deletions
38
.gitea/workflows/release.yml
Normal file
38
.gitea/workflows/release.yml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
name: Release Builds
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
name: Docker Image
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.23.0
|
||||
cache: false
|
||||
|
||||
- name: Run docker build
|
||||
run: |
|
||||
go run build/ci.go docker -platform linux/amd64,linux/arm64
|
||||
|
||||
linux:
|
||||
name: Docker Image
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.23.0
|
||||
cache: false
|
||||
|
||||
- name: Run build
|
||||
run: |
|
||||
go run build/ci.go install
|
||||
Loading…
Reference in a new issue