Skip to content

Commit

Permalink
BUMP: version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgepiloto committed Dec 12, 2022
1 parent 034cc96 commit d9fa764
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 19 deletions.
22 changes: 5 additions & 17 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,41 +150,29 @@ jobs:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
use-python-cache: false

doc-deploy-to-repo:
name: "Deploy developers documentation to specific repository"
runs-on: ubuntu-latest
needs: doc-build
steps:
- name: "Deploy developers documentation"
if: github.event_name == 'push'
uses: pyansys/actions/doc-deploy-to-repo@main
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
repository: "pyansys/actions"
bot-id: ${{ secrets.BOT_APPLICATION_ID }}
bot-token: ${{ secrets.BOT_APPLICATION_PRIVATE_KEY }}

doc-deploy-dev:
name: "Deploy developers documentation"
runs-on: ubuntu-latest
needs: doc-deploy-to-repo
if: github.event_name == 'push'
needs: doc-build
steps:
- name: "Deploy developers documentation"
if: github.event_name == 'push'
uses: pyansys/actions/doc-deploy-dev@main
with:
doc-artifact-name: 'documentation-html'
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}

doc-deploy-stable:
name: "Deploy stable documentation"
runs-on: ubuntu-latest
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
needs: doc-deploy-dev
steps:
- name: "Deploy stable documentation"
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
uses: pyansys/actions/doc-deploy-stable@main
with:
doc-artifact-name: 'documentation-html'
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
python-version: ${{ env.MAIN_PYTHON_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.1
2.0.2
2 changes: 1 addition & 1 deletion tests/pyansys-actions/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
[project]
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
name = "ansys-actions-core"
version = "2.0.1"
version = "2.0.2"
description = "A demo library for testing pyansys actions"
readme = "README.rst"
requires-python = ">=3.7"
Expand Down

0 comments on commit d9fa764

Please sign in to comment.