New version: Anydo.Anydo version 5.0.57.1 (#33) #10
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: Update database | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- manifests/** | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: Install-Module -Name powershell-yaml -Force -Repository PSGallery -Scope CurrentUser | |
shell: pwsh | |
- run: .\Tools\build_database.ps1 | |
shell: pwsh | |
- run: pip install -r Tools/requirements.txt | |
- run: python Tools/write_database.py | |
env: | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} |