diff --git a/.github/labels.yml b/.github/labels.yml index db55cba8545..413e3847c51 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -29,3 +29,7 @@ - name: testing description: Anything related to testing color: 5802B8 + +- name: edb + description: Anything related to the EDB API + color: C4C25D diff --git a/.github/workflows/full_documentation.yml b/.github/workflows/full_documentation.yml index 9803b95be47..4f80360f4f5 100644 --- a/.github/workflows/full_documentation.yml +++ b/.github/workflows/full_documentation.yml @@ -73,10 +73,10 @@ jobs: testenv\Scripts\Activate.ps1 sphinx-build -j auto --color -b html -a doc/source doc/_build/html - - name: Create PDF Documentations - run: | - testenv\Scripts\Activate.ps1 - .\doc\make.bat pdf +# - name: Create PDF Documentations +# run: | +# testenv\Scripts\Activate.ps1 +# .\doc\make.bat pdf - name: Upload HTML documentation artifact uses: actions/upload-artifact@v3 @@ -92,20 +92,20 @@ jobs: path: doc/_build/html/EDBAPI retention-days: 7 - - name: Upload PDF documentation artifact - uses: actions/upload-artifact@v3 - with: - name: documentation-pdf - path: doc/_build/pdf - retention-days: 7 - - - name: Release - uses: softprops/action-gh-release@v1 - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - with: - generate_release_notes: true - files: | - doc/_build/pdf +# - name: Upload PDF documentation artifact +# uses: actions/upload-artifact@v3 +# with: +# name: documentation-pdf +# path: doc/_build/pdf +# retention-days: 7 + +# - name: Release +# uses: softprops/action-gh-release@v1 +# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') +# with: +# generate_release_notes: true +# files: | +# doc/_build/pdf doc-deploy-stable: name: Deploy stable documentation