From 9227db70b5b7b3689e1e769c406227a1d23e4346 Mon Sep 17 00:00:00 2001 From: German Date: Thu, 3 Feb 2022 15:07:36 +0100 Subject: [PATCH 1/3] Bumping to v0.2 --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index cb5709c9c..ce660459d 100755 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -6,7 +6,7 @@ project = 'PyAnsys Developers Guide' copyright = f"(c) {datetime.now().year} ANSYS, Inc. All rights reserved" author = "Ansys Inc." -release = version = '0.1.dev0' +release = version = '0.2.dev0' html_logo = pyansys_logo_black html_theme = 'pyansys_sphinx_theme' From 2817c091c45c5e5d974de5f8d0f3415e2a008952 Mon Sep 17 00:00:00 2001 From: German Date: Thu, 3 Feb 2022 15:20:15 +0100 Subject: [PATCH 2/3] fixing release CI --- .github/workflows/ci-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 6899b31c1..0e66b597a 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -67,7 +67,7 @@ jobs: with: token: ${{ secrets.github_token }} branch: gh-pages - folder: doc/build/html + folder: HTML-Documentation clean: true single-commit: true @@ -75,4 +75,4 @@ jobs: uses: softprops/action-gh-release@v1 with: files: | - ./**/*.pdf + ./*PDF*/*.pdf From 3283bc86d31f06f84f9f48929dab4d3e1a7f33ac Mon Sep 17 00:00:00 2001 From: German Date: Thu, 3 Feb 2022 15:42:11 +0100 Subject: [PATCH 3/3] Adding checkout action because deploy pages requires it. --- .github/workflows/ci-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 0e66b597a..8c14067cd 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -52,6 +52,8 @@ jobs: needs: docs_build runs-on: ubuntu-latest steps: + - uses: actions/checkout@v2 + - name: Set up Python uses: actions/setup-python@v1 with: