Skip to content

Commit

Permalink
fix release wf
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-manzi committed Jun 17, 2024
1 parent 1138eaa commit 1441629
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
name: rpms7
path: |
build/RPMS/noarch/nagios-*.el7.x86_64.rpm
build/RPMS/noarch/nagios-*.el7.noarch.rpm
build/SRPMS/nagios-*.el7.src.rpm
almalinux9:
Expand All @@ -52,7 +52,7 @@ jobs:
with:
name: rpms9
path: |
build/RPMS/noarch/nagios-*.el9.x86_64.rpm
build/RPMS/noarch/nagios-*.el9.noarch.rpm
build/SRPMS/nagios-*.el9.src.rpm
release7:
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Find package name
id: package_name_centos7
run: |
rpm_path=$(find . -name 'nagios-*.el7.x86_64.rpm')
rpm_path=$(find . -name 'nagios-*.el7.noarch.rpm')
src_path=$(find . -name 'nagios-*.el7.src.rpm')
echo "rpm_path=${rpm_path}" >> "$GITHUB_OUTPUT"
echo "src_path=${src_path}" >> "$GITHUB_OUTPUT"
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Find package name
id: package_name_almalinux9
run: |
rpm_path=$(find . -name 'nagios-*.el9.x86_64.rpm')
rpm_path=$(find . -name 'nagios-*.el9.noarch.rpm')
src_path=$(find . -name 'nagios-*.el9.src.rpm')
echo "rpm_path=${rpm_path}" >> "$GITHUB_OUTPUT"
echo "src_path=${src_path}" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 1441629

Please sign in to comment.