2024-06-22 20:43:35 +02:00
|
|
|
name: RPM Build
|
2024-06-22 20:18:41 +02:00
|
|
|
on: workflow_dispatch
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-06-22 21:04:30 +02:00
|
|
|
runs-on: ubuntu-latest
|
2024-06-22 20:18:41 +02:00
|
|
|
steps:
|
2024-06-22 21:04:30 +02:00
|
|
|
- uses: actions/checkout@v2
|
2024-06-22 20:18:41 +02:00
|
|
|
|
2024-06-22 21:04:30 +02:00
|
|
|
- name: build RPM package
|
|
|
|
id: rpm
|
|
|
|
uses: naveenrajm7/rpmbuild@master
|
|
|
|
with:
|
|
|
|
spec_file: "cello.spec"
|
|
|
|
additional_repos: "['centos-release-scl', 'http://www.percona.com/downloads/percona-release/redhat/0.1-3/percona-release-0.1-3.noarch.rpm']"
|
2024-06-22 20:18:41 +02:00
|
|
|
|
2024-06-22 21:04:30 +02:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v1.0.0
|
|
|
|
with:
|
|
|
|
name: Binary RPM
|
|
|
|
path: ${{ steps.rpm.outputs.rpm_dir_path }}
|