Skip to content

Commit 82f7518

Browse files
committed
Fix toolset after base image change
1 parent d83a873 commit 82f7518

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/netlicensing-client-release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@ jobs:
2727
jdk-suffix: -jdk17
2828

2929
steps:
30-
# Specific to maven:3-amazoncorretto-17-al2023 image
31-
# - name: Install required tooling
32-
# run: yum install -y --allowerasing git gnupg2
30+
- name: Install required tooling
31+
# Specific to maven:3-amazoncorretto-17-al2023 image
32+
# run: yum install -y --allowerasing git gnupg2
33+
# Specific to maven:3-eclipse-temurin-17 image
34+
run: apt update & apt install -y ssh gnupg2
3335

3436
- name: Checkout the sources
3537
uses: actions/checkout@v4

.github/workflows/netlicesning-client-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454
EOF
5555
5656
- name: Calculate branch suffix
57+
# Ensure bash is used, as the script uses bash-specific syntax
58+
shell: bash
5759
run: |
5860
if [ "$GITHUB_REF_NAME" = "master" ]
5961
then

0 commit comments

Comments
 (0)