Add gitea workflows
Build and provide rpm of tea, the gitea CLI / rpmbuild (release) Failing after 1m3s

This commit is contained in:
2026-01-04 00:20:35 +01:00
parent 3554add1df
commit c2457be167
3 changed files with 57 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
name: Build and provide rpm of tea, the gitea CLI
run-name: Build tea from ${{ gitea.repository }} on COPR
on: [release]
jobs:
rpmbuild:
runs-on: f43-minimal-copr
steps:
- name: Check out repository code
uses: https://git.demus.dk/actions/git-clone@main
- name: Build src.rpm and send to COPR
uses: https://git.demus.dk/actions/copr-build@main
with:
copr_config: ${{ secrets.COPR_API_CONFIG }}
copr_project: gitea
fedora_release: f43
specdir: rpm
+16
View File
@@ -0,0 +1,16 @@
name: Build and provide rpm of tea, the gitea CLI
run-name: Build tea from ${{ gitea.repository }} on COPR
on: [release]
jobs:
rpmbuild:
runs-on: rawhide-minimal-copr
steps:
- name: Check out repository code
uses: https://git.demus.dk/actions/git-clone@main
- name: Build src.rpm and send to COPR
uses: https://git.demus.dk/actions/copr-build@main
with:
copr_config: ${{ secrets.COPR_API_CONFIG }}
copr_project: gitea
fedora_release: rawhide
specdir: rpm
+25
View File
@@ -0,0 +1,25 @@
name: Build and provide rpm of tea, the gitea CLI
run-name: Build tea from ${{ gitea.repository }} on COPR
on:
workflow_dispatch:
inputs:
fedora_release:
type: choice
description: "Choose a fedora release"
required: true
options:
- "f43"
- "rawhide"
jobs:
rpmbuild:
runs-on: ${{ inputs.fedora_release }}-minimal-copr
steps:
- name: Check out repository code
uses: https://git.demus.dk/actions/git-clone@main
- name: Build src.rpm and send to COPR
uses: https://git.demus.dk/actions/copr-build@main
with:
copr_config: ${{ secrets.COPR_API_CONFIG }}
copr_project: gitea
fedora_release: ${{ inputs.fedora_release }}
specdir: rpm