Skip to content

Commit

Permalink
feat: add sample for fedora distribution (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Sep 2, 2024
1 parent 20d49c2 commit dafd530
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/rhel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

name: rhel
name: RHEL

on:
push:
Expand Down Expand Up @@ -76,7 +76,12 @@ jobs:
name: sinatra-package

- name: Install OpenSSL 1.1
run: dnf -y install compat-openssl11-1.1.1k procps-ng
run: |
if [ "${{matrix.container}}" = "rockylinux:9" ] ; then
dnf -y install compat-openssl11 procps-ng
elif [ "${{matrix.container}}" = "fedora:40" ] ; then
dnf -y install openssl1.1 procps-ng
fi
- name: Adjust package permissions
run: chmod +x sinatra-package
Expand Down

0 comments on commit dafd530

Please sign in to comment.