mirror of
https://github.com/naveenrajm7/rpmbuild.git
synced 2025-07-11 20:04:42 +00:00
Allows the user to specify additional repositories to enable before building the rpm Signed-off-by: Cyrille Bollu <cyrille@debian-BULLSEYE-live-builder-AMD64>
35 lines
792 B
YAML
35 lines
792 B
YAML
name: 'RPM Build'
|
|
description: 'Build RPMs from spec file and upload it as Artifact or Release Asset'
|
|
author: 'Naveenraj M'
|
|
|
|
inputs:
|
|
spec_file:
|
|
description: 'path to the spec file'
|
|
required: true
|
|
default: '*.spec' #Any spec file in top
|
|
additional_repos:
|
|
description: 'A list of additional repositories to enable'
|
|
required: false
|
|
|
|
outputs:
|
|
source_rpm_path:
|
|
description: 'path to Source RPM file'
|
|
source_rpm_dir_path:
|
|
description: 'path to SRPMS directory'
|
|
source_rpm_name:
|
|
description: 'name of Source RPM file'
|
|
rpm_dir_path:
|
|
description: 'path to RPMS directory'
|
|
rpm_content_type:
|
|
description: 'Content-type for Upload'
|
|
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
|
|
branding:
|
|
icon: 'package'
|
|
color: 'red'
|
|
|
|
|