mirror of
https://github.com/JDM170/ReVanced_Builder
synced 2025-11-29 14:41:46 +07:00
Compare commits
3 Commits
2025.08.01
...
33f148cbe6
| Author | SHA1 | Date | |
|---|---|---|---|
| 33f148cbe6 | |||
|
cbc170c0ec
|
|||
|
4c356736b0
|
11
.github/workflows/Build.yml
vendored
11
.github/workflows/Build.yml
vendored
@@ -1,6 +1,8 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "30 3 1 * *"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
@@ -36,6 +38,14 @@ jobs:
|
||||
run: |
|
||||
. Scripts\Zulu_JDK.ps1
|
||||
|
||||
- name: Add keystore from secrets
|
||||
env:
|
||||
KEYSTORE: ${{ secrets.REVANCED_KEYSTORE }}
|
||||
if: ${{ env.KEYSTORE != '' }}
|
||||
run: |
|
||||
[byte[]]$bytes = [convert]::FromBase64String('${{ env.KEYSTORE }}')
|
||||
[System.IO.File]::WriteAllBytes("Temp\revanced.keystore", $bytes)
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
$JavaPath = (Resolve-Path -Path "Temp\jdk_windows-x64_bin\zulu*win_x64\bin\java.exe").Path
|
||||
@@ -78,3 +88,4 @@ jobs:
|
||||
tag_name: ${{ env.RELEASE_NAME }}
|
||||
body_path: ${{ steps.read_release.outputs.ReleaseBody }}
|
||||
files: ReVanced.zip
|
||||
|
||||
|
||||
Reference in New Issue
Block a user