Skip to content

Commit

Permalink
use GraalVM πŸš€
Browse files Browse the repository at this point in the history
  • Loading branch information
alina-yur committed Mar 18, 2024
1 parent 816f941 commit a61ce56
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
- name: Set up GraalVM
uses: graalvm/setup-graalvm@v1
with:
java-version: '21'
distribution: 'temurin'
cache: maven
java-version: '22-ea' # Adjust this version to match the version you want from GraalVM
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}
# Add any other specific options you need for GraalVM here
- name: Build with Maven
run: mvn -B package --file pom.xml
run: mvn -B package --file pom.xml

0 comments on commit a61ce56

Please sign in to comment.