Skip to content

Commit

Permalink
chore: updated build.yml workflow for github
Browse files Browse the repository at this point in the history
  • Loading branch information
wglanzer committed Oct 23, 2024
1 parent 4fd5ed1 commit 0d18ba3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,18 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'zulu'
java-version: '11'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Archive artifacts
uses: actions/upload-artifact@v2-preview
uses: actions/upload-artifact@v4
with:
name: distribution
path: build/distributions/*.zip

0 comments on commit 0d18ba3

Please sign in to comment.