MusicGen / .github /workflows /audiocraft_docs.yml
adefossez's picture
Initial commit
5238467
name: audiocraft_docs
on:
push:
branches: [ main ]
jobs:
run_docs:
name: Run docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/audiocraft_build
- name: Config git
run: |
git config --global user.email "defossez@fb.com"
git config --global user.name "Alexandre Défossez (autodoc)"
- name: Reset branch
run: |
git branch -f gh-docs main
git checkout gh-docs
- name: Make docs
run: |
. env/bin/activate
make docs
git add -f docs
git commit -m docs
- name: Push branch
run: |
git push -f -u origin gh-docs