We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ae7c34 commit ccb4141Copy full SHA for ccb4141
.github/workflows/create-release.yml
@@ -25,6 +25,8 @@ jobs:
25
create-release:
26
name: Creates release branch and tag
27
runs-on: ubuntu-latest
28
+ env:
29
+ JDK_VER: 17
30
steps:
31
- name: Check out code
32
uses: actions/checkout@v4
@@ -34,6 +36,10 @@ jobs:
34
36
run: |
35
37
sudo apt-get update
38
sudo apt-get install pcre2-utils
39
+ uses: actions/setup-java@v4
40
+ with:
41
+ distribution: 'adopt'
42
+ java-version: ${{ env.JDK_VER }}
43
- name: Create release branch and tag
44
env:
45
GITHUB_TOKEN: ${{ secrets.DAPR_BOT_TOKEN }}
0 commit comments