Skip to content

Commit

Permalink
Fix create release to run with right JDK (dapr#1171)
Browse files Browse the repository at this point in the history
Signed-off-by: Artur Souza <[email protected]>
Signed-off-by: salaboy <[email protected]>
  • Loading branch information
artursouza authored and salaboy committed Dec 10, 2024
1 parent 73fc493 commit 1fbf0d0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,18 @@ jobs:
create-release:
name: Creates release branch and tag
runs-on: ubuntu-latest
env:
JDK_VER: '17'
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up OpenJDK ${{ env.JDK_VER }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ env.JDK_VER }}
- name: Install required packages
run: |
sudo apt-get update
Expand Down

0 comments on commit 1fbf0d0

Please sign in to comment.