Create rpmbuild.yml

This commit is contained in:
Thomas Gruber 2021-11-22 16:33:06 +01:00 committed by GitHub
parent 728b5f3e48
commit 14fdb28d51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
.github/workflows/rpmbuild.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: RPM Build
on: push
jobs:
build:
runs-on: alpine_latest
steps:
- uses: actions/checkout@v2
- name: build RPM package
id: rpm
uses: naveenrajm7/rpmbuild@master
with:
spec_file: "scripts/cc-metric-collector.spec"
- name: Upload artifact
uses: actions/upload-artifact@v1.0.0
with:
name: Binary RPM
path: ${{ steps.rpm.outputs.rpm_dir_path }}