Add gitea workflows
Build and provide rpm of tea, the gitea CLI / rpmbuild (release) Failing after 1m3s
Build and provide rpm of tea, the gitea CLI / rpmbuild (release) Failing after 1m3s
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user