2023-03-08 14:53:32 -05:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2023-03-08 14:38:17 -05:00
|
|
|
name: Updater
|
2023-03-08 14:53:32 -05:00
|
|
|
|
|
|
|
steps:
|
2023-03-08 14:38:17 -05:00
|
|
|
- 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
|