generated from demus/basic-rpm-template
Build and provide rpm of bats-file / Build src rpm and send it to COPR (f42) (release) Failing after 2m12s
Build and provide rpm of bats-file / Build src rpm and send it to COPR (f43) (release) Failing after 1m40s
Build and provide rpm of bats-file / Build src rpm and send it to COPR (f44) (release) Failing after 2m20s
Build and provide rpm of bats-file / Build src rpm and send it to COPR (rawhide) (release) Failing after 1m41s
24 lines
790 B
YAML
24 lines
790 B
YAML
name: Build and provide rpm of bats-file
|
|
run-name: Rpmbuild bats-file at ${{ gitea.repository }} by ${{ github.actor }}
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
fedoraversion:
|
|
type: choice
|
|
description: "Choose a fedora version"
|
|
required: true
|
|
options: [ f42, f43, f44, rawhide ]
|
|
jobs:
|
|
rpmbuild:
|
|
name: Build and deploy an rpm to the demus.dk repo
|
|
runs-on: ${{ inputs.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 }}
|