.gitea: add initial workflow file (#31885)

This commit is contained in:
Felix Lange 2025-05-23 12:33:43 +02:00 committed by GitHub
parent f21adaf245
commit 94481d1351
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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