Skip to content

Commit

Permalink
Update packaging workflow (tektronix#34)
Browse files Browse the repository at this point in the history
* ci: Update workflow to enable loading in a GPG signing key to the job.
Signed-off-by: v12ganesh [email protected]
  • Loading branch information
nfelt14 authored Oct 19, 2023
1 parent d3d211a commit 7d62a3b
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/package-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ jobs:
with:
fetch-depth: 0
token: ${{ secrets.TEK_OPENSOURCE_TOKEN }}
persist-credentials: false
- name: Import GPG key for signing commits
id: import-gpg
uses: crazy-max/ghaction-import-gpg@v4
with:
gpg_private_key: ${{ secrets.TEK_OPENSOURCE_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.TEK_OPENSOURCE_GPG_PASSPHRASE }}
git_config_global: true
git_user_signingkey: true
git_commit_gpgsign: true
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand All @@ -39,15 +49,13 @@ jobs:
run: cp CHANGELOG.md python_semantic_release_templates/.previous_changelog_for_template.md
- name: Python Semantic Release
id: release
uses: python-semantic-release/python-semantic-release@v8.0.0
uses: python-semantic-release/python-semantic-release@v8.1.2
with:
root_options: --verbose --strict
force: ${{ inputs.release_level }}
github_token: ${{ secrets.GITHUB_TOKEN }}
git_committer_name: Tektronix
git_committer_email: [email protected]
ssh_public_signing_key: ${{ secrets.TEK_OPENSOURCE_PUBLIC_KEY }}
ssh_private_signing_key: ${{ secrets.TEK_OPENSOURCE_PRIVATE_KEY }}
github_token: ${{ secrets.TEK_OPENSOURCE_TOKEN }}
git_committer_name: ${{ steps.import-gpg.outputs.name }}
git_committer_email: ${{ steps.import-gpg.outputs.email }}
outputs:
built-version: ${{ steps.release.outputs.version }}
pypi-build:
Expand Down

0 comments on commit 7d62a3b

Please sign in to comment.