We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71b4319 commit 9a5f634Copy full SHA for 9a5f634
1 file changed
.github/workflows/build-core.yaml
@@ -24,6 +24,13 @@ jobs:
24
distribution: 'temurin'
25
- name: Setup Gradle
26
uses: gradle/actions/setup-gradle@v3
27
+ - name: Download jextract
28
+ run: |
29
+ mkdir -p $HOME/.local/jextract
30
+ curl -L https://download.java.net/java/early_access/jextract/22/6/openjdk-22-jextract+6-47_linux-x64_bin.tar.gz | tar -xz -C $HOME/.local/jextract --strip-components=1
31
+ echo "$HOME/.local/jextract/bin" >> $GITHUB_PATH
32
+ - name: Verify jextract is in PATH
33
+ run: which jextract
34
- name: Build & Publish
35
env:
36
TAG_VERSION: ${{ github.ref_name }}
0 commit comments