Files
python-types-requests-rpm/.gitea/workflows/copr-dispatch.yaml
T
demus 098c37fb30
Build and provide rpm of python types-requests / Run rpmbuild (f44) (release) Has been cancelled
Build and provide rpm of python types-requests / Run rpmbuild (rawhide) (release) Has been cancelled
Build and provide rpm of python types-requests / Start build on COPR (f43) (release) Successful in 3m10s
Build and provide rpm of python types-requests / Start build on COPR (rawhide) (release) Successful in 2m40s
Build and provide rpm of python types-requests / Run rpmbuild (f43) (release) Has been cancelled
Build and provide rpm of python types-requests / Start build on COPR (f44) (release) Successful in 3m12s
Consolidate workflows
2026-03-28 01:23:51 +01:00

29 lines
948 B
YAML

name: Build and provide rpm of python types-requests
run-name: Build python types-requests from ${{ gitea.repository }} on COPR
on:
workflow_dispatch:
inputs:
fedoraversion:
type: choice
description: "Choose a fedora release"
required: true
options: [ f43, f44, rawhide ]
coprproject:
type: choice
description: "Which repo"
required: true
options: [ packages, packages-test ]
jobs:
coprbuild:
name: "Start build on COPR"
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: ${{ inputs.coprproject }}
fedora_release: ${{ inputs.fedoraversion }}