Skip to content

Commit

Permalink
Fix toolset after base image change
Browse files Browse the repository at this point in the history
  • Loading branch information
kkorotkov authored and r-brown committed Jul 15, 2024
1 parent a090659 commit 6a9850c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/netlicensing-client-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,13 @@ jobs:
jdk-suffix: -jdk17

steps:
# Specific to maven:3-amazoncorretto-17-al2023 image
# - name: Install required tooling
# run: yum install -y --allowerasing git gnupg2
- name: Install required tooling
# Specific to maven:3-amazoncorretto-17-al2023 image
# run: yum install -y --allowerasing git gnupg2
# Specific to maven:3-eclipse-temurin-17 image
run: |
apt-get update
apt-get install -y ssh gnupg2
- name: Checkout the sources
uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/netlicesning-client-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ jobs:
EOF
- name: Calculate branch suffix
# Ensure bash is used, as the script uses bash-specific syntax
shell: bash
run: |
if [ "$GITHUB_REF_NAME" = "master" ]
then
Expand Down

0 comments on commit 6a9850c

Please sign in to comment.