From 15302fe9b6a866b47dc4e27504293425822764ec Mon Sep 17 00:00:00 2001 From: Will Haines Date: Wed, 14 Feb 2024 15:10:56 -0700 Subject: [PATCH] Publish rpms with a release --- .github/workflows/build.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0a80223..e96de92 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,3 +43,17 @@ jobs: name: Merlin RPMs path: ${{ steps.merlin.outputs.rpm_dir_path }} + publish-rpms: + runs-on: ubuntu-latest + needs: + - build-naemon + - build-merlin + steps: + - uses: actions/download-artifact@v4 + with: + merge-multiple: True + - uses: ncipollo/release-action@v1 + with: + artifacts: 'x86_64/*' + commit: ${{ github.sha }} +