Skip to content

Commit

Permalink
chore: add java
Browse files Browse the repository at this point in the history
  • Loading branch information
pvetere committed Oct 16, 2024
1 parent 6ce0136 commit 07cab0e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand All @@ -32,6 +32,12 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'temurin'

- name: prepare build environment
run: echo "CONFIG="$(cat config.json)"" >> ${GITHUB_ENV}

Expand Down

0 comments on commit 07cab0e

Please sign in to comment.