Skip to content

Check scalar

Check scalar #45

Workflow file for this run

name: Check scalar
on:
schedule:
- cron: "10 0 * * *"
jobs:
deploy:
runs-on: ubuntu-latest
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Update flask-openapi3-scalar
id: update_scalar
run: |
cd ./flask-openapi3-scalar/flask_openapi3_scalar
old_version=$(cat __version__.py | grep -oP '(?<=__version__ = ").*(?=")')
new_version=$(npm show @scalar/api-reference version)
if [ "${new_version}" != "${old_version}" ]; then
curl -L https://cdn.jsdelivr.net/npm/@scalar/api-reference@${new_version}/dist/browser/standalone.min.js \
-o ./templates/scalar/js/scalar.standalone.js
echo -e "# -*- coding: utf-8 -*-\n\n__version__ = \"${new_version}\"" > __version__.py
echo "new_version=${new_version}" >> $GITHUB_OUTPUT
echo "is_update=true" >> $GITHUB_OUTPUT
else
echo "is_update=false" >> $GITHUB_OUTPUT
fi
- name: Git Commit
if: ${{ steps.update_scalar.outputs.is_update == 'true' }}
id: git_commit
run: |
new_version=${{ steps.update_scalar.outputs.new_version }}
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update scalar ${new_version}"
git push origin master
- name: Release flask-openapi3-scalar
if: ${{ steps.git_commit.outcome == 'success' }}
run: |
cd flask-openapi3-scalar
python -m build
twine upload dist/*