Skip to content

Commit

Permalink
java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTrunk committed Mar 15, 2024
1 parent adb1cf2 commit 3b21065
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/android_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -24,15 +28,6 @@ jobs:
needs: install-and-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- name: Install npm dependencies
run: |
yarn
- name: Decode Keystore
id: decode_keystore
uses: timheuer/base64-to-file@v1
Expand Down
13 changes: 4 additions & 9 deletions .github/workflows/android_release_self_hosted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ jobs:
runs-on: ssp-key-android
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -21,15 +25,6 @@ jobs:
needs: install-and-test
runs-on: ssp-key-android
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- name: Install npm dependencies
run: |
yarn
- name: Decode Keystore
id: decode_keystore
uses: timheuer/base64-to-file@v1
Expand Down

0 comments on commit 3b21065

Please sign in to comment.