generated from n0k0m3/revanced-build-template
-
Notifications
You must be signed in to change notification settings - Fork 11
70 lines (58 loc) · 1.94 KB
/
x.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Build X
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: zulu
- name: Download ReVanced CLI
uses: robinraju/[email protected]
with:
repository: 'ReVanced/revanced-cli'
latest: true
fileName: '*.jar'
- name: Download ReVanced Patches
uses: robinraju/[email protected]
with:
repository: 'ReVanced/revanced-patches'
latest: true
fileName: '*.rvp'
- name: Download X APK
uses: robinraju/[email protected]
with:
repository: '${{ github.repository }}'
tag: base
fileName: x.apk
- name: Build APKs
run: ./scripts/build.sh -x
- name: Set current date as env variable
run: >-
echo "date_now=$(date +'%Y-%m-%d')" >> $GITHUB_ENV && echo
"date_now_nodashes=$(date +'%Y%m%d')" >> $GITHUB_ENV
- uses: kevin-david/[email protected]
name: Sign X APK
id: sign_x
with:
releaseDirectory: build/x/
signingKeyBase64: '${{ secrets.SIGNING_KEY }}'
alias: '${{ secrets.ALIAS }}'
keyStorePassword: '${{ secrets.KEY_STORE_PASSWORD }}'
keyPassword: '${{ secrets.KEY_PASSWORD }}'
- name: Generate SHA256 checksums for the signed APK file
run: ./scripts/sha256gen.sh -x
- uses: marvinpinto/action-automatic-releases@latest
name: Release X
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
automatic_release_tag: '${{ env.date_now_nodashes }}-x'
title: 'X ${{ env.date_now }}'
prerelease: false
files: |
build/hashes/sha256-x.txt
${{ steps.sign_x.outputs.signedReleaseFile }}