refactor: moved from github

This commit is contained in:
matt1432 2023-03-08 14:38:17 -05:00
commit 0e6767ab8a
18 changed files with 1106 additions and 0 deletions
.github/workflows

24
.github/workflows/updater.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: Updater
on:
schedule:
- cron: '0 20 * * *'
workflow_dispatch:
jobs:
Update-Apks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- run: pipx install pipenv
- uses: actions/setup-python@v2
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