Skip to content

Commit

Permalink
ci: Update semantic release step to not use the docker container. (te…
Browse files Browse the repository at this point in the history
…ktronix#35)

Signed-off-by: v12ganesh [email protected]
  • Loading branch information
nfelt14 authored Oct 19, 2023
1 parent 7d62a3b commit c4913e1
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/package-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ on:
concurrency:
group: pypi
jobs:
# This job requires a Personal Access Token (Classic) with
# the public_repo permission. It also needs secrets with GPG
# signing key information for the same account that the token is from.
pypi-version:
name: Update package version
if: github.repository == 'tektronix/tm_devices' && github.ref == 'refs/heads/main'
Expand All @@ -31,7 +34,7 @@ jobs:
persist-credentials: false
- name: Import GPG key for signing commits
id: import-gpg
uses: crazy-max/ghaction-import-gpg@v4
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.TEK_OPENSOURCE_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.TEK_OPENSOURCE_GPG_PASSPHRASE }}
Expand All @@ -43,19 +46,23 @@ jobs:
with:
python-version: x
check-latest: true
- name: Install dependencies
run: pip install python-semantic-release
- name: Check for unreleased entries in the Changelog
run: python scripts/check_unreleased_changelog_items.py
- name: Copy Changelog to template directory
run: cp CHANGELOG.md python_semantic_release_templates/.previous_changelog_for_template.md
- name: Python Semantic Release
id: release
uses: python-semantic-release/[email protected]
with:
root_options: --verbose --strict
force: ${{ inputs.release_level }}
github_token: ${{ secrets.TEK_OPENSOURCE_TOKEN }}
git_committer_name: ${{ steps.import-gpg.outputs.name }}
git_committer_email: ${{ steps.import-gpg.outputs.email }}
run: python -m semantic_release --verbose --strict --${{ inputs.release_level }}
--commit --push --changelog --vcs-release
env:
GH_TOKEN: ${{ secrets.TEK_OPENSOURCE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.TEK_OPENSOURCE_TOKEN }}
GIT_AUTHOR_NAME: ${{ steps.import-gpg.outputs.name }}
GIT_AUTHOR_EMAIL: ${{ steps.import-gpg.outputs.email }}
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 c4913e1

Please sign in to comment.