Add gitea workflows
Build and provide rpm of gitea / rpmbuild (f43) (release) Successful in 2m11s
Build and provide rpm of gitea / rpmbuild (rawhide) (release) Successful in 2m21s

This commit is contained in:
2026-03-16 17:35:00 +01:00
parent 5ac785ecb3
commit 3517e18b86
5 changed files with 81 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
name: Build and provide rpm of gitea
run-name: Build gitea from ${{ gitea.repository }} on COPR
on: [release]
jobs:
rpmbuild:
strategy:
matrix:
fedoraversion: [f43, rawhide]
runs-on: ${{ matrix.fedoraversion }}-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: packages
fedora_release: f43
+22
View File
@@ -0,0 +1,22 @@
name: Build and provide rpm of gitea
run-name: Build gitea from ${{ gitea.repository }} on COPR
on:
workflow_dispatch:
inputs:
fedoraversion:
type: choice
description: "Choose a fedora release"
required: true
options: [f43, rawhide]
jobs:
rpmbuild:
runs-on: ${{ inputs.fedoraversion }}-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: packages
fedora_release: ${{ inputs.fedoraversion }}
+22
View File
@@ -0,0 +1,22 @@
name: Build and provide rpm of demus profiles
run-name: Rpmbuild demus-profile at ${{ gitea.repository }} by ${{ github.actor }}
on:
workflow_dispatch:
inputs:
runsonlabel:
type: choice
description: "Choose a label"
required: true
options: [ f42, f43, rawhide ]
jobs:
rpmbuild:
runs-on: ${{ inputs.runsonlabel }}-minimal-rpmbuild
steps:
- name: Check out repository code
uses: https://git.demus.dk/actions/git-clone@main
- name: Build the rpms
uses: https://git.demus.dk/actions/rpmbuild@main
- name: Deploy to packages
uses: https://git.demus.dk/actions/rpm-deploy@main
with:
pat: ${{ secrets.RPM_REPO_WRITE }}
+18
View File
@@ -0,0 +1,18 @@
name: Build and provide rpm of demus profiles
run-name: Rpmbuild demus-profile by @${{ github.actor }}
on: [release]
jobs:
rpmbuild:
strategy:
matrix:
rpmbuilder: [ f42, f43, rawhide ]
runs-on: ${{ matrix.rpmbuilder }}-minimal-rpmbuild
steps:
- name: Check out repository code
uses: https://git.demus.dk/actions/git-clone@main
- name: Build the rpms
uses: https://git.demus.dk/actions/rpmbuild@main
- name: Deploy to packages
uses: https://git.demus.dk/actions/rpm-deploy@main
with:
pat: ${{ secrets.RPM_REPO_WRITE }}
+1 -1
View File
@@ -51,7 +51,7 @@ Easy Bash Gui shortened as EBG, is a Posix compliant Bash functions library that
%license %{_defaultdocdir}/%{name}/LICENSE
%doc README.md
%{_bindir}/*
%{_libdir}/%{name}/*
%{_prefix}/lib/%{name}/*
%{_datadir}/%{name}/*
%{_mandir}/*