Skip to content

Commit

Permalink
Update used third-party github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hamoid authored and edwinRNDR committed Mar 30, 2023
1 parent b4dae00 commit 6944998
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build-on-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/checkout@v3

- uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
java-version: '17'
#cache: 'gradle'

- name: Build sources
run: ./gradlew build
run: ./gradlew build

7 changes: 4 additions & 3 deletions .github/workflows/publish-binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,15 @@ jobs:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
java-version: '17'
#cache: 'gradle'

- name: Build with Gradle
run: ./gradlew jpackageZip


- run: echo "OR_TARGET_NAME=linux-x64" >> $GITHUB_ENV
if: matrix.os == 'ubuntu-latest'

Expand Down

0 comments on commit 6944998

Please sign in to comment.