python-semantic-release 9.9.0__tar.gz → 9.10.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_semantic_release-9.9.0/python_semantic_release.egg-info → python_semantic_release-9.10.1}/PKG-INFO +1 -1
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/automatic-releases/github-actions.rst +40 -6
- python_semantic_release-9.10.1/docs/changelog_templates.rst +918 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/commands.rst +4 -1
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/configuration.rst +106 -9
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/index.rst +1 -2
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/pyproject.toml +7 -2
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1/python_semantic_release.egg-info}/PKG-INFO +1 -1
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/python_semantic_release.egg-info/SOURCES.txt +16 -4
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/__init__.py +1 -1
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/changelog/context.py +32 -3
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/changelog/template.py +29 -8
- python_semantic_release-9.10.1/semantic_release/cli/changelog_writer.py +263 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/commands/changelog.py +4 -1
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/commands/version.py +1 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/config.py +58 -3
- python_semantic_release-9.10.1/semantic_release/cli/const.py +5 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/commit_parser/angular.py +11 -3
- python_semantic_release-9.10.1/semantic_release/data/templates/angular/md/.changelog_header.md.j2 +9 -0
- python_semantic_release-9.10.1/semantic_release/data/templates/angular/md/.changelog_init.md.j2 +22 -0
- python_semantic_release-9.10.1/semantic_release/data/templates/angular/md/.changelog_update.md.j2 +62 -0
- python_semantic_release-9.10.1/semantic_release/data/templates/angular/md/.changes.md.j2 +16 -0
- python_semantic_release-9.10.1/semantic_release/data/templates/angular/md/.unreleased_changes.md.j2 +7 -0
- python_semantic_release-9.10.1/semantic_release/data/templates/angular/md/.versioned_changes.md.j2 +14 -0
- python_semantic_release-9.10.1/semantic_release/data/templates/angular/md/CHANGELOG.md.j2 +24 -0
- python_semantic_release-9.10.1/semantic_release/data/templates/angular/release_notes.md.j2 +1 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/errors.py +4 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/command_line/test_changelog.py +488 -7
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/command_line/test_main.py +2 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/command_line/test_version.py +320 -7
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/example_project.py +5 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/git_repo.py +57 -4
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/repos/git_flow/repo_w_2_release_channels.py +56 -7
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/repos/git_flow/repo_w_3_release_channels.py +63 -7
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/repos/github_flow/repo_w_release_channels.py +32 -4
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/repos/trunk_based_dev/repo_w_no_tags.py +2 -2
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/repos/trunk_based_dev/repo_w_prereleases.py +24 -3
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/repos/trunk_based_dev/repo_w_tags.py +9 -2
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/changelog/test_changelog_context.py +28 -5
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/changelog/test_default_changelog.py +47 -19
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/changelog/test_release_notes.py +17 -14
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/changelog/test_template.py +11 -2
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/cli/test_config.py +25 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/commit_parser/test_angular.py +6 -6
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/hvcs/test_gitea.py +1 -1
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/hvcs/test_github.py +1 -1
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/util.py +13 -7
- python_semantic_release-9.9.0/docs/changelog_templates.rst +0 -377
- python_semantic_release-9.9.0/semantic_release/cli/changelog_writer.py +0 -175
- python_semantic_release-9.9.0/semantic_release/cli/const.py +0 -1
- python_semantic_release-9.9.0/semantic_release/data/templates/CHANGELOG.md.j2 +0 -21
- python_semantic_release-9.9.0/semantic_release/data/templates/release_notes.md.j2 +0 -8
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/AUTHORS.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/LICENSE +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/MANIFEST.in +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/README.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/Makefile +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/algorithm.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/automatic-releases/cronjobs.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/automatic-releases/index.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/automatic-releases/travis.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/commit-parsing.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/conf.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/contributing.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/contributors.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/make.bat +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/migrating_from_v7.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/multibranch_releases.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/strict_mode.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/docs/troubleshooting.rst +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/python_semantic_release.egg-info/dependency_links.txt +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/python_semantic_release.egg-info/entry_points.txt +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/python_semantic_release.egg-info/requires.txt +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/python_semantic_release.egg-info/top_level.txt +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/__main__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/changelog/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/changelog/release_history.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/cli_context.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/commands/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/commands/generate_config.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/commands/main.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/commands/publish.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/github_actions_output.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/masking_filter.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/cli/util.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/commit_parser/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/commit_parser/_base.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/commit_parser/emoji.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/commit_parser/scipy.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/commit_parser/tag.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/commit_parser/token.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/commit_parser/util.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/const.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/enums.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/gitproject.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/helpers.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/hvcs/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/hvcs/_base.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/hvcs/bitbucket.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/hvcs/gitea.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/hvcs/github.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/hvcs/gitlab.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/hvcs/remote_hvcs_base.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/hvcs/token_auth.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/hvcs/util.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/version/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/version/algorithm.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/version/declaration.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/version/translator.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/semantic_release/version/version.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/setup.cfg +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/command_line/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/command_line/conftest.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/command_line/test_generate_config.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/command_line/test_help.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/command_line/test_publish.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/conftest.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/const.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/commit_parsers.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/repos/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/repos/git_flow/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/repos/github_flow/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/repos/trunk_based_dev/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/fixtures/scipy.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/scenario/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/scenario/test_next_version.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/scenario/test_release_history.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/scenario/test_template_render.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/scenario/test_version_stamp.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/changelog/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/cli/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/cli/test_github_actions_output.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/cli/test_masking_filter.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/cli/test_util.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/cli/test_version.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/commit_parser/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/commit_parser/test_emoji.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/commit_parser/test_parsed_commit.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/commit_parser/test_scipy.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/commit_parser/test_tag.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/commit_parser/test_util.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/hvcs/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/hvcs/test__base.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/hvcs/test_bitbucket.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/hvcs/test_gitlab.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/hvcs/test_token_auth.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/hvcs/test_util.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/test_helpers.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/version/__init__.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/version/test_algorithm.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/version/test_declaration.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/version/test_translator.py +0 -0
- {python_semantic_release-9.9.0 → python_semantic_release-9.10.1}/tests/unit/semantic_release/version/test_version.py +0 -0
|
@@ -68,6 +68,31 @@ outlines each supported input and its purpose.
|
|
|
68
68
|
|
|
69
69
|
----
|
|
70
70
|
|
|
71
|
+
.. _gh_actions-psr-inputs-build:
|
|
72
|
+
|
|
73
|
+
``build``
|
|
74
|
+
""""""""
|
|
75
|
+
|
|
76
|
+
**Type:** ``Literal["true", "false"]``
|
|
77
|
+
|
|
78
|
+
Override whether the action should execute the build command or not. This option is
|
|
79
|
+
equivalent to adding the command line switch ``--skip-build`` (when ``false``) to
|
|
80
|
+
the :ref:`version <cmd-version>` command. If set to ``true``, no command line switch
|
|
81
|
+
is passed and the default behavior of the :ref:`version <cmd-version>` is used.
|
|
82
|
+
|
|
83
|
+
**Required:** ``false``
|
|
84
|
+
|
|
85
|
+
.. note::
|
|
86
|
+
If not set or set to ``true``, the default behavior is defined by the
|
|
87
|
+
:ref:`version <cmd-version>` command and any user :ref:`configurations <config-root>`.
|
|
88
|
+
|
|
89
|
+
.. seealso::
|
|
90
|
+
|
|
91
|
+
- :ref:`cmd-version-option-skip_build` option for the :ref:`version <cmd-version>`
|
|
92
|
+
command.
|
|
93
|
+
|
|
94
|
+
----
|
|
95
|
+
|
|
71
96
|
.. _gh_actions-psr-inputs-build_metadata:
|
|
72
97
|
|
|
73
98
|
``build_metadata``
|
|
@@ -312,7 +337,7 @@ before the :ref:`version <cmd-version>` subcommand.
|
|
|
312
337
|
|
|
313
338
|
.. code:: yaml
|
|
314
339
|
|
|
315
|
-
- uses: python-semantic-release/python-semantic-release@v9.
|
|
340
|
+
- uses: python-semantic-release/python-semantic-release@v9.10.1
|
|
316
341
|
with:
|
|
317
342
|
root_options: "-vv --noop"
|
|
318
343
|
|
|
@@ -643,14 +668,23 @@ to the GitHub Release Assets as well.
|
|
|
643
668
|
contents: write
|
|
644
669
|
|
|
645
670
|
steps:
|
|
646
|
-
|
|
671
|
+
# Note: we need to checkout the repository at the workflow sha in case during the workflow
|
|
672
|
+
# the branch was updated. To keep PSR working with the configured release branches,
|
|
673
|
+
# we force a checkout of the desired release branch but at the workflow sha HEAD.
|
|
674
|
+
- name: Setup | Checkout Repository at workflow sha
|
|
675
|
+
uses: actions/checkout@v4
|
|
647
676
|
with:
|
|
648
677
|
fetch-depth: 0
|
|
678
|
+
ref: ${{ github.sha }}
|
|
679
|
+
|
|
680
|
+
- name: Setup | Force correct release branch on workflow sha
|
|
681
|
+
run: |
|
|
682
|
+
git checkout -B ${{ github.ref_name }} ${{ github.sha }}
|
|
649
683
|
|
|
650
684
|
- name: Action | Semantic Version Release
|
|
651
685
|
id: release
|
|
652
686
|
# Adjust tag with desired version if applicable.
|
|
653
|
-
uses: python-semantic-release/python-semantic-release@v9.
|
|
687
|
+
uses: python-semantic-release/python-semantic-release@v9.10.1
|
|
654
688
|
with:
|
|
655
689
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
656
690
|
git_committer_name: "github-actions"
|
|
@@ -710,7 +744,7 @@ The equivalent GitHub Action configuration would be:
|
|
|
710
744
|
|
|
711
745
|
- name: Action | Semantic Version Release
|
|
712
746
|
# Adjust tag with desired version if applicable.
|
|
713
|
-
uses: python-semantic-release/python-semantic-release@v9.
|
|
747
|
+
uses: python-semantic-release/python-semantic-release@v9.10.1
|
|
714
748
|
with:
|
|
715
749
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
716
750
|
force: patch
|
|
@@ -738,13 +772,13 @@ Publish Action.
|
|
|
738
772
|
.. code:: yaml
|
|
739
773
|
|
|
740
774
|
- name: Release Project 1
|
|
741
|
-
uses: python-semantic-release/python-semantic-release@v9.
|
|
775
|
+
uses: python-semantic-release/python-semantic-release@v9.10.1
|
|
742
776
|
with:
|
|
743
777
|
directory: ./project1
|
|
744
778
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
745
779
|
|
|
746
780
|
- name: Release Project 2
|
|
747
|
-
uses: python-semantic-release/python-semantic-release@v9.
|
|
781
|
+
uses: python-semantic-release/python-semantic-release@v9.10.1
|
|
748
782
|
with:
|
|
749
783
|
directory: ./project2
|
|
750
784
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|