Publish to GitHub #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Publish to GitHub | |
on: | |
workflow_dispatch: | |
inputs: | |
release-level: | |
type: choice | |
required: true | |
description: | | |
Select the release level: | |
patch for backward compatible minor changes and bug fixes, | |
minor for backward compatible larger changes, | |
major for non-backward compatible changes. | |
options: [patch, minor, major] | |
concurrency: | |
group: pypi | |
jobs: | |
package-release: | |
uses: ./.github/workflows/_reusable-package-release.yml | |
with: | |
package-name: python-package-ci-cd | |
repo-name: tektronix/python-package-ci-cd | |
build-and-publish-python-package: false | |
commit-user-name: ${{ vars.TEK_OPENSOURCE_NAME }} | |
commit-user-email: ${{ vars.TEK_OPENSOURCE_EMAIL }} | |
release-level: ${{ inputs.release-level }} | |
previous-changelog-filepath: python_semantic_release_templates/.previous_changelog_for_template.md | |
previous-release-notes-filepath: python_semantic_release_templates/.previous_release_notes_for_template.md | |
permissions: | |
contents: write | |
id-token: write | |
attestations: write | |
secrets: | |
checkout-token: ${{ secrets.TEK_OPENSOURCE_TOKEN }} | |
ssh-signing-key-private: ${{ secrets.TEK_OPENSOURCE_SSH_SIGNING_KEY_PRIVATE }} | |
ssh-signing-key-public: ${{ secrets.TEK_OPENSOURCE_SSH_SIGNING_KEY_PUBLIC }} |