Compare commits

...
Sign in to create a new pull request.

22 commits
main ... main

Author SHA1 Message Date
b7826e016e Update .github/workflows/build_pull_request.yml 2025-05-23 08:58:41 -05:00
7449e1eb74 Update .github/workflows/build_pull_request.yml 2025-05-23 08:56:29 -05:00
03708116ff Update .github/workflows/build_pull_request.yml 2025-05-23 05:03:17 -05:00
41f6097374 Update .github/workflows/build_push.yml 2025-05-23 04:53:41 -05:00
56b27d20eb Update .github/workflows/build_push.yml 2025-05-23 03:00:34 -05:00
ec65a3317f Update .github/workflows/build_push.yml 2025-05-23 02:47:02 -05:00
d9e55be893 Update .github/workflows/build_push.yml 2025-05-23 02:38:27 -05:00
b20a69b504 Update .github/workflows/build_push.yml 2025-05-23 02:33:47 -05:00
ae190cc371 Update .github/workflows/build_push.yml 2025-05-23 02:13:55 -05:00
ecfe891379 Update .github/workflows/build_push.yml 2025-05-23 01:25:33 -05:00
b29c4f9550 Update .github/workflows/build_push.yml 2025-05-23 01:16:47 -05:00
3c9526fb74 Update .github/workflows/build_push.yml 2025-05-23 01:09:36 -05:00
8c958b5d8f Update .github/workflows/build_push.yml 2025-05-23 01:05:59 -05:00
d0d8660b8b Update .github/workflows/build_push.yml 2025-05-23 01:00:28 -05:00
b172b25bb1 Update .github/workflows/build_push.yml 2025-05-23 00:47:03 -05:00
6b5807be97 Update .github/workflows/build_push.yml 2025-05-23 00:40:01 -05:00
0c6d703c39 Update .github/workflows/build_push.yml 2025-05-23 00:35:36 -05:00
92b54c9a55 Update .github/workflows/build_push.yml 2025-05-23 00:28:18 -05:00
3676197ea6 Update .github/workflows/build_push.yml 2025-05-22 23:58:50 -05:00
0d5077630d Delete local.properties 2025-05-22 23:26:25 -05:00
69dfe2b499 Update .github/workflows/build_push.yml 2025-05-22 23:23:19 -05:00
3b7284cbe5 Updated local.properties (#1011)
Co-authored-by: Arkai <arkai@noreply.localhost>
Co-committed-by: Arkai <arkai@noreply.localhost>
2025-05-22 05:12:09 -05:00
3 changed files with 23 additions and 10 deletions

View file

@ -18,7 +18,7 @@ env:
jobs: jobs:
prepare: prepare:
name: Prepare job name: Prepare job
runs-on: docker runs-on: ubuntu-22.04
outputs: outputs:
individualMatrix: ${{ steps.generate-matrices.outputs.individualMatrix }} individualMatrix: ${{ steps.generate-matrices.outputs.individualMatrix }}
steps: steps:
@ -49,7 +49,7 @@ jobs:
build_individual: build_individual:
name: Build individual modules name: Build individual modules
needs: prepare needs: prepare
runs-on: docker runs-on: ubuntu-22.04
strategy: strategy:
matrix: ${{ fromJSON(needs.prepare.outputs.individualMatrix) }} matrix: ${{ fromJSON(needs.prepare.outputs.individualMatrix) }}
steps: steps:

View file

@ -95,6 +95,11 @@ jobs:
java-version: 17 java-version: 17
distribution: temurin distribution: temurin
- name: Set up Android SDK
uses: https://github.com/android-actions/setup-android@00854ea68c109d98c75d956347303bf7c45b0277 # v3
with:
packages: ""
- name: Prepare signing key - name: Prepare signing key
run: | run: |
echo ${{ secrets.SIGNING_KEY }} | base64 -d > signingkey.jks echo ${{ secrets.SIGNING_KEY }} | base64 -d > signingkey.jks
@ -111,8 +116,8 @@ jobs:
run: chmod +x ./gradlew && ./gradlew -p src assembleRelease run: chmod +x ./gradlew && ./gradlew -p src assembleRelease
- name: Upload APKs (chunk ${{ matrix.chunk }}) - name: Upload APKs (chunk ${{ matrix.chunk }})
uses: https://github.com/actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4 uses: https://code.forgejo.org/forgejo/upload-artifact@16871d9e8cfcf27ff31822cac382bbb5450f1e1e # v4-patch
if: "github.repository == 'Kohi-den/extensions-source'" if: "github.repository == 'AlmightyHak/extensions-source'"
with: with:
name: "individual-apks-${{ matrix.chunk }}" name: "individual-apks-${{ matrix.chunk }}"
path: "**/*.apk" path: "**/*.apk"
@ -128,8 +133,12 @@ jobs:
if: "github.repository == 'AlmightyHak/extensions-source'" if: "github.repository == 'AlmightyHak/extensions-source'"
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- name: Setup rsync
run: |
sudo apt-get update && sudo apt install rsync -y
- name: Download APK artifacts - name: Download APK artifacts
uses: https://github.com/actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4 uses: https://code.forgejo.org/forgejo/download-artifact@d8d0a99033603453ad2255e58720b460a0555e1e # v4-patch
with: with:
path: ~/apk-artifacts path: ~/apk-artifacts
@ -139,6 +148,11 @@ jobs:
java-version: 17 java-version: 17
distribution: temurin distribution: temurin
- name: Set up Android SDK
uses: https://github.com/android-actions/setup-android@00854ea68c109d98c75d956347303bf7c45b0277 # v3
with:
packages: "build-tools;34.0.0"
- name: Checkout main branch - name: Checkout main branch
uses: https://github.com/actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 uses: https://github.com/actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with: with:

View file

@ -1 +0,0 @@
sdk.dir = /workspace/AlmightyHak/extensions-source/SDK/