8000 Fix toolset after base image change · Labs64/NetLicensingClient-java@6a9850c · GitHub
[go: up one dir, main page]

Skip to content

Commit 6a9850c

Browse files
kkorotkovr-brown
authored andcommitted
Fix toolset after base image change
1 parent a090659 commit 6a9850c

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,13 @@ 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: |
35+
apt-get update
36+
apt-get install -y ssh gnupg2
3337
3438
- name: Checkout the sources
3539
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)
0