Skip to content

Revanced APKs

Revanced APKs #9

Workflow file for this run

name: Revanced APKs
on:
schedule:
- cron: '*/60 * * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Revanced Youtube
run: sh revanced youtube
- name: Run Revanced Youtube Music
run: sh revanced youtube-music
- name: Check for APK files
id: check_apks
run: ls yt-*.apk 1> /dev/null 2>&1 && echo "apks_exist=true" >> "$GITHUB_ENV" || echo "apks_exist=false" >> "$GITHUB_ENV"
- name: Upload binaries to release
if: ${{ apks_exist }} == 'true'

Check failure on line 27 in .github/workflows/blank.yml

View workflow run for this annotation

GitHub Actions / Revanced APKs

Invalid workflow file

The workflow is not valid. .github/workflows/blank.yml (Line: 27, Col: 13): Unrecognized named-value: 'apks_exist'. Located at position 1 within expression: apks_exist
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: yt-*.apk
tag: ${{ github.ref }}
overwrite: true
file_glob: true
body: "New Releases."
- name: auwuto commit uwu
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "update: New Version"
repository: .
file_pattern: track
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}