fix ov install in openvoice notebook #4194
Workflow file for this run
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
# Generate tags for each notebook | |
name: Generate tags | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- 'main' | |
paths: | |
- 'notebooks/**.ipynb' | |
- '.ci/keywords.json' | |
- '.ci/tagger.py' | |
jobs: | |
build_codecheck: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-20.04 # change cachepip step when changing this | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Dotenv Action | |
id: dotenv | |
uses: xom9ikk/[email protected] | |
with: | |
path: ./.github/workflows | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Run tagger and store results in file | |
run: | | |
python .ci/tagger.py > notebook-tags-${{ github.sha }}.json | |
- name: Archive notebook tags | |
uses: actions/upload-artifact@v4 | |
with: | |
name: notebook-tags | |
path: notebook-tags-${{ github.sha }}.json |