diff --git a/.github/workflows/netlicensing-client-release.yml b/.github/workflows/netlicensing-client-release.yml index 481c2455..8203083e 100644 --- a/.github/workflows/netlicensing-client-release.yml +++ b/.github/workflows/netlicensing-client-release.yml @@ -11,7 +11,7 @@ on: jobs: release: - name: Release ${{ github.event.inputs.release-version }} + name: Release ${{ github.event.inputs.release-version }} / Java ${{ matrix.java-version }} runs-on: self-hosted container: maven:3-amazoncorretto-17 strategy: @@ -24,7 +24,12 @@ jobs: jdk-suffix: -jdk17 steps: - - uses: actions/checkout@v3 + # Specific to the maven:3-amazoncorretto-17 image + - name: Install required tooling + run: yum install -y git + + - name: Checkout the sources + uses: actions/checkout@v4 with: ssh-key: '${{ secrets.REPO_SSH_KEY }}'