ReVanced Build #4
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: ReVanced Build | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3.10.0 | |
with: | |
java-version: "17" | |
distribution: "zulu" | |
- name: Download APKs from APKMirror | |
run: ./download_apkmirror.sh | |
- name: Build APKs | |
run: ./build_revanced.sh | |
- name: Set current date as env variable | |
run: echo "date_now=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | |
- uses: marvinpinto/action-automatic-releases@latest | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
draft: true | |
title: "Release ${{ env.date_now }}" | |
files: | | |
build/*.apk | |
vanced-microG.apk |