Build X #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build X | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: zulu | |
- name: Download ReVanced Integrations | |
uses: robinraju/[email protected] | |
with: | |
repository: 'ReVanced/revanced-integrations' | |
latest: true | |
fileName: '*.apk' | |
- 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: '*.jar' | |
- 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 }} |