android_vendor_partner_gms/.github/workflows/updater.yml
Pete Fotheringham a2b369be67
Use node20
2024-10-26 20:37:27 +01:00

28 lines
668 B
YAML

name: Updater
on:
schedule:
- cron: '37 13 * * *'
workflow_dispatch:
runs:
using: 'node20'
main: 'dist/index.js'
jobs:
Update-Apks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- run: pipx install pipenv
- uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pipenv'
cache-dependency-path: 'updater/Pipfile.lock'
- run: pipenv install
working-directory: updater
- run: pipenv run python main.py
working-directory: updater