Skip to content

Commit

Permalink
release: bump version 0.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Revathyvenugopal162 committed May 22, 2024
1 parent e50a43b commit 5a2d859
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}

update-changelog:
name: "Update CHANGELOG (on release)"
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: ansys/actions/doc-deploy-changelog@v6
with:
token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}

doc-build:
name: Doc building
runs-on: ubuntu-latest
Expand Down Expand Up @@ -109,7 +121,7 @@ jobs:
release:
name: "Release project to private PyPI, public PyPI and GitHub"
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
needs: build-library
needs: [build-library, update-changelog]
runs-on: ubuntu-latest
steps:

Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/378.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix: add changelog action in ci-cd
2 changes: 1 addition & 1 deletion 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-sphinx-theme"
version = "0.16.0"
version = "0.16.1"
description = "A theme devised by ANSYS, Inc. for Sphinx documentation."
readme = "README.rst"
requires-python = ">=3.9,<4"
Expand Down

0 comments on commit 5a2d859

Please sign in to comment.