From 82d357bcd13780f02256b4f819f521477cb7b848 Mon Sep 17 00:00:00 2001 From: Jon Rood Date: Tue, 24 Sep 2024 12:36:27 -0600 Subject: [PATCH] Fix docs CI mistake (#1308) * Fix docs CI mistake. * Don't fail on warnings yet. --- .github/workflows/docs.yml | 6 +++--- .readthedocs.yml | 12 ------------ 2 files changed, 3 insertions(+), 15 deletions(-) delete mode 100644 .readthedocs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 0d631d8ed..1281f1d4d 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,9 +2,9 @@ name: Nalu-Wind-Docs on: push: - branches: [main] + branches: [master] pull_request: - branches: [main] + branches: [master] concurrency: group: ${{github.ref}}-${{github.head_ref}}-docs @@ -46,7 +46,7 @@ jobs: egrep "WARNING:" build-output.txt | sort | uniq | \ awk 'BEGIN{i=0}{print $0}{i++}END{print "Warnings: "i}' > build-output-warnings.txt cat build-output-warnings.txt - exit $(tail -n 1 build-output-warnings.txt | awk '{print $2}') + #exit $(tail -n 1 build-output-warnings.txt | awk '{print $2}') - name: Deploy if: github.event_name == 'push' uses: JamesIves/github-pages-deploy-action@releases/v3 diff --git a/.readthedocs.yml b/.readthedocs.yml deleted file mode 100644 index bd70bf602..000000000 --- a/.readthedocs.yml +++ /dev/null @@ -1,12 +0,0 @@ -# .readthedocs.yml -version: 2 -sphinx: - builder: html - configuration: docs/conf.py -formats: all -python: - version: 3.7 - install: - - requirements: docs/requirements.txt -submodules: - exclude: all