Skip to content
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
14 changes: 7 additions & 7 deletions docs/automatic-releases/github-actions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ before the :ref:`version <cmd-version>` subcommand.

.. code:: yaml

- uses: python-semantic-release/python-semantic-release@v9.12.0
- uses: python-semantic-release/python-semantic-release@v9.16.0
with:
root_options: "-vv --noop"

Expand Down Expand Up @@ -576,7 +576,7 @@ before the :ref:`publish <cmd-publish>` subcommand.

.. code:: yaml

- uses: python-semantic-release/publish-action@v9.8.9
- uses: python-semantic-release/publish-action@v9.16.0
with:
root_options: "-vv --noop"

Expand Down Expand Up @@ -684,7 +684,7 @@ to the GitHub Release Assets as well.
- name: Action | Semantic Version Release
id: release
# Adjust tag with desired version if applicable.
uses: python-semantic-release/python-semantic-release@v9.12.0
uses: python-semantic-release/python-semantic-release@v9.16.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
git_committer_name: "github-actions"
Expand All @@ -695,7 +695,7 @@ to the GitHub Release Assets as well.
if: steps.release.outputs.released == 'true'

- name: Publish | Upload to GitHub Release Assets
uses: python-semantic-release/publish-action@v9.8.9
uses: python-semantic-release/publish-action@v9.16.0
if: steps.release.outputs.released == 'true'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -744,7 +744,7 @@ The equivalent GitHub Action configuration would be:

- name: Action | Semantic Version Release
# Adjust tag with desired version if applicable.
uses: python-semantic-release/python-semantic-release@v9.12.0
uses: python-semantic-release/python-semantic-release@v9.16.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
force: patch
Expand Down Expand Up @@ -772,13 +772,13 @@ Publish Action.
.. code:: yaml

- name: Release Project 1
uses: python-semantic-release/python-semantic-release@v9.12.0
uses: python-semantic-release/python-semantic-release@v9.16.0
with:
directory: ./project1
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Release Project 2
uses: python-semantic-release/python-semantic-release@v9.12.0
uses: python-semantic-release/python-semantic-release@v9.16.0
with:
directory: ./project2
github_token: ${{ secrets.GITHUB_TOKEN }}