Skip to content

Commit

Permalink
Build: update java 8 runtime branch and actions ver
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhduytran0 committed Jul 22, 2024
1 parent fcc7efe commit 98ef0d9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
ls -lah ./
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@main

- name: Checkout repository submodules
run: git submodule update --init --recursive
Expand All @@ -50,7 +50,7 @@ jobs:
shell: bash

- name: Cache gl4es
uses: actions/cache@v3
uses: actions/cache@main
if: false # use gl4es 1.1.5
id: gl4es-cache
with:
Expand All @@ -59,7 +59,7 @@ jobs:

- name: Get gl4es
if: false && steps.gl4es-cache.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@main
with:
repository: 'PojavLauncherTeam/gl4es-114-extra'
path: 'gl4es'
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
workflow_conclusion: success
allow_forks: false
repo: PojavLauncherTeam/android-openjdk-build-multiarch
branch: jre8-ios-jitjailed
branch: buildjre8
name: jre8-ios-aarch64

- name: Get JRE17
Expand Down Expand Up @@ -142,31 +142,31 @@ jobs:
fi
- name: Upload regular ipa
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: net.kdt.pojavlauncher-${{ matrix.platform_name }}.ipa
path: artifacts/net.kdt.pojavlauncher-*-${{ matrix.platform_name }}.ipa

- name: Upload regular tipa
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: net.kdt.pojavlauncher-${{ matrix.platform_name }}-trollstore.tipa
path: artifacts/net.kdt.pojavlauncher-*-${{ matrix.platform_name }}-trollstore.tipa

- name: Upload slimmed ipa
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: net.kdt.pojavlauncher.slimmed-${{ matrix.platform_name }}.ipa
path: artifacts/net.kdt.pojavlauncher.slimmed-*-${{ matrix.platform_name }}.ipa

- name: Upload slimmed tipa
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: net.kdt.pojavlauncher.slimmed-${{ matrix.platform_name }}-trollstore.tipa
path: artifacts/net.kdt.pojavlauncher.slimmed-*-${{ matrix.platform_name }}-trollstore.tipa

- name: Upload PojavLauncher.dSYM
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: PojavLauncher.dSYM
path: artifacts/PojavLauncher.dSYM
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
ls -lah ./
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@main

- name: Checkout repository submodules
run: git submodule update --init --recursive
Expand All @@ -43,7 +43,7 @@ jobs:
shell: bash

- name: Cache gl4es
uses: actions/cache@v3
uses: actions/cache@main
if: false # use gl4es 1.1.5
id: gl4es-cache
with:
Expand All @@ -52,7 +52,7 @@ jobs:

- name: Get gl4es
if: false && steps.gl4es-cache.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@main
with:
repository: 'PojavLauncherTeam/gl4es-114-extra'
path: 'gl4es'
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
workflow_conclusion: success
allow_forks: false
repo: PojavLauncherTeam/android-openjdk-build-multiarch
branch: jre8-ios-jitjailed
branch: buildjre8
name: jre8-ios-aarch64

- name: Get JRE17
Expand Down Expand Up @@ -135,19 +135,19 @@ jobs:
fi
- name: Upload regular ipa
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: net.kdt.pojavlauncher-${{ matrix.platform_name }}.ipa
path: artifacts/net.kdt.pojavlauncher-*-${{ matrix.platform_name }}.ipa

- name: Upload regular tipa
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: net.kdt.pojavlauncher-${{ matrix.platform_name }}.tipa
path: artifacts/net.kdt.pojavlauncher-*-${{ matrix.platform_name }}-trollstore.tipa

- name: Upload PojavLauncher.dSYM
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: PojavLauncher.dSYM
path: artifacts/PojavLauncher.dSYM

0 comments on commit 98ef0d9

Please sign in to comment.