Set naemon source to GH release #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: RPM Build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: build Naemon packages | |
id: naemon | |
uses: UCBoulder/oit-sepe-rpmbuild@master | |
with: | |
spec_file: "naemon-core.spec" | |
additional_repos: '["epel-release"]' | |
- name: build Merlin packages | |
id: merlin | |
uses: UCBoulder/oit-sepe-rpmbuild@master | |
with: | |
spec_file: "merlin.spec" | |
additional_repos: '["epel-release", "https://labs.consol.de/repo/stable/rhel8/x86_64/labs-consol-stable.rhel8.noarch.rpm"]' | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
name: Merlin RPMs | |
path: ${{ steps.merlin.outputs.rpm_dir_path }} | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
name: Naemon RPMs | |
path: ${{ steps.naemon.outputs.rpm_dir_path }} |