Skip to content

Commit

Permalink
Fix release flow
Browse files Browse the repository at this point in the history
  • Loading branch information
kkorotkov committed Dec 18, 2023
1 parent 796b3e8 commit 03f4334
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/netlicensing-client-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}'

Expand Down

0 comments on commit 03f4334

Please sign in to comment.