Get Apps Latest Version #37
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: Get Apps Latest Version | |
on: | |
workflow_dispatch: | |
jobs: | |
get-apps-versions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests packaging | |
- name: Run version update script | |
run: python build/get_apps_latest_version.py --max-pages 1 --page-size 100 | |
- name: Upload output as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: output-json | |
path: output.json |