diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index b0e1c5b44..89b98517f 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -90,17 +90,16 @@ jobs: .venv\Scripts\Activate.ps1 . .\doc\make.bat pdf - - name: Upload PDF documentation artifact - uses: actions/upload-artifact@v3 - with: - name: documentation-pdf - path: doc/_build/pdf - retention-days: 7 - + - name: Upload PDF documentation artifact + uses: actions/upload-artifact@v3 + with: + name: documentation-pdf + path: doc/_build/pdf + retention-days: 7 release: if: github.event_name == 'push' && contains(github.ref, 'refs/tags') - needs: [style, doc-build] #docs-style + needs: [style, doc-build] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4