Skip to content

Commit

Permalink
Fix RPM URL for 3.9.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Jun 28, 2024
1 parent 3558aaa commit 85deaca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelogs/fragments/188-sops-3.9.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bugfixes:
- "Fix RPM URL for the 3.9.0 release (https://github.com/ansible-collections/community.sops/pull/188)."
5 changes: 4 additions & 1 deletion roles/install/vars/OS-RedHat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ _community_sops_install_system_packages_unsigned_github:
}}{{
_community_sops_install_effective_sops_version.replace('-', '.')
}}{{
(_community_sops_install_effective_sops_version is version('3.8.0', '<')) | ternary('-1', '')
(
_community_sops_install_effective_sops_version is version('3.8.0', '<') or
_community_sops_install_effective_sops_version is version('3.9.0', '>=')
) | ternary('-1', '')
}}.{{
ansible_facts.architecture
}}.rpm
Expand Down

0 comments on commit 85deaca

Please sign in to comment.