Skip to content

Commit

Permalink
Update to JDK 19
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaumeise03 committed Sep 15, 2024
1 parent a9e038a commit 0c08047
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/deploy_releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@ on:
required: true
type: boolean
default: true
build_desktop:
description: 'Build and Deploy Desktop'
required: true
type: boolean
default: true

jobs:
job-linux:
runs-on: ubuntu-latest
if: ${{ inputs.build_desktop }}

steps:
- uses: subosito/[email protected]
Expand Down Expand Up @@ -66,6 +72,7 @@ jobs:
# WINDOWS
job-windows:
runs-on: windows-latest
if: ${{ inputs.build_desktop }}

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -123,6 +130,7 @@ jobs:

job-apple:
runs-on: macos-latest
if: ${{ inputs.build_desktop }}

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -206,9 +214,10 @@ jobs:
echo "${{ secrets.UPLOAD_KEYSTORE }}" > key.jks.asc
gpg -d --passphrase ${{ secrets.UPLOAD_KEYSTORE_PASSPHRASE }} --batch key.jks.asc > key.jks
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
java-version: '12.x'
distribution: 'zulu'
java-version: '19'

- uses: subosito/[email protected]
with:
Expand Down Expand Up @@ -249,6 +258,7 @@ jobs:
upload-release-s3:
needs: [job-linux, job-apple, job-windows]
runs-on: ubuntu-latest
if: ${{ inputs.build_desktop }}

steps:
# This is to give an offset since builds before this repo were in the 100's
Expand Down

0 comments on commit 0c08047

Please sign in to comment.