lnav/.github/workflows/rpmbuild.yml

30 lines
578 B
YAML
Raw Normal View History

2023-06-30 16:50:55 +00:00
name: RPM Build
on:
push:
branches: [ master ]
paths-ignore:
- docs
- README.md
- NEWS.md
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build RPM package
id: rpm
uses: naveenrajm7/rpmbuild@master
with:
spec_file: "release/lnav.spec"
2023-06-30 17:07:49 +00:00
additional_repos: '["centos-release-scl"]'
2023-06-30 16:50:55 +00:00
- name: Upload artifact
uses: actions/upload-artifact@v1.0.0
with:
name: Binary RPM
path: ${{ steps.rpm.outputs.rpm_dir_path }}