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
12 changes: 12 additions & 0 deletions .github/workflows/tag-release-devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ on:
description: "An repository for the extra artifact"
required: false
type: string
pypi_publish:
description: "Whether to publish to PyPI"
required: false
type: boolean
default: false
outputs:
version_tag:
value: ${{ jobs.tag_release.outputs.version_tag }}
Expand All @@ -71,6 +76,9 @@ on:
EXECUTE_JIRA_LAMBDA_ROLE:
required: false
description: "ARN of the role to assume when executing the Jira update lambda"
PYPI_TOKEN:
required: false
description: "PyPI token to publish packages"
jobs:
tag_release:
permissions:
Expand Down Expand Up @@ -222,6 +230,8 @@ jobs:
EXTRA_ASSET: ${{ inputs.extra_artifact_name }}
UPDATE_JIRA: ${{ inputs.update_jira }}
JIRA_RELEASE_PREFIX: ${{ inputs.jira_release_prefix }}
PYPI_PUBLISH: ${{ inputs.pypi_publish }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

- name: Create semantic release tag
if: ${{ !inputs.dry_run }}
Expand All @@ -234,6 +244,8 @@ jobs:
EXTRA_ASSET: ${{ inputs.extra_artifact_name }}
UPDATE_JIRA: ${{ inputs.update_jira }}
JIRA_RELEASE_PREFIX: ${{ inputs.jira_release_prefix }}
PYPI_PUBLISH: ${{ inputs.pypi_publish }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
npx semantic-release --tag-format "${TAG_FORMAT}"

Expand Down
Loading