mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
21 lines
423 B
YAML
21 lines
423 B
YAML
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 }}
|