Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove unnecessary curly brackets in doc-deploy-changelog docs #476

Merged
merged 1 commit into from
May 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions doc/source/migrations/docs-deploy-changelog-setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Once the ``doc-changelog`` action is done being set up, continue with the ``doc-
steps:
- uses: ansys/actions/doc-deploy-changelog@{{ version }}
with:
token: ${{ '{{ secrets.PYANSYS_CI_BOT_TOKEN }}' }}
token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}

release:
name: Release project
Expand All @@ -36,14 +36,14 @@ Once the ``doc-changelog`` action is done being set up, continue with the ``doc-
- name: Release to the public PyPI repository
uses: ansys/actions/release-pypi-public@{{ version }}
with:
library-name: ${{ '{{ env.PACKAGE_NAME }}' }}
library-name: ${{ env.PACKAGE_NAME }}
twine-username: "__token__"
twine-token: ${{ '{{ secrets.PYPI_TOKEN }}' }}
twine-token: ${{ secrets.PYPI_TOKEN }}

- name: Release to GitHub
uses: ansys/actions/release-github@{{ version }}
with:
library-name: ${{ '{{ env.PACKAGE_NAME }}' }}
library-name: ${{ env.PACKAGE_NAME }}

.. warning::

Expand Down
Loading