CoolFace
Apppublic

singularity7/Muggier

sourceHugging Facecc-by-nc-4.0updated 3y agoView on Hugging Face
0likes
audiocraft_docs.yml33 linesDownload Raw Back to workflows
1name: audiocraft_docs2on:3  push:4    branches: [ main ]5 6jobs:7  run_docs:8    name: Run docs9    runs-on: ubuntu-latest10    steps:11      - uses: actions/checkout@v212      - uses: ./.github/actions/audiocraft_build13      - name: Config git14        run: |15          git config --global user.email "defossez@fb.com"16          git config --global user.name "Alexandre Défossez (autodoc)"17 18      - name: Reset branch19        run: |20          git branch -f gh-docs main21          git checkout gh-docs22 23      - name: Make docs24        run: |25          . env/bin/activate26          make api_docs27          git add -f api_docs28          git commit -m api_docs29 30      - name: Push branch31        run: |32          git push -f -u origin gh-docs33