Files
basic-rpm-template/.gitea/workflows/rpmbuild-release.yaml
T
demus 8f2b7c949e Remove EOL'ed fedora releases
Put placeholders in README.md
2026-06-05 12:16:37 +02:00

20 lines
687 B
YAML

name: Build and provide rpm of ${REPO_NAME}
run-name: Rpmbuild ${REPO_NAME} by $${{ github.actor }} by $${{ github.actor }}
on: [ release ]
jobs:
rpmbuild:
name: Build and deploy an rpm to the demus.dk repo
strategy:
matrix:
fedoraversion: [ f44, rawhide ]
runs-on: $${{ matrix.fedoraversion }}-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 }}