DEPRECATION NOTICE: This action has been deprecated as it has been renamed to
python-semantic-release/publish-action
. Please update your workflows to use the new action.
This GitHub Action runs semantic-release publish
using
python-semantic-release
.
Full documentation is available in the
documentation for Python
Semantic Release.
WARNING: This Action is intended to be used in conjunction with Python Semantic Release configuration of the same version! Using this Action with a different version of Python Semantic Release may result in unexpected errors.
name: CI/CD
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
concurrency: release
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Python Semantic Release
id: release
uses: python-semantic-release/python-semantic-release@v9.8.9
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# <other options here>
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@v1
if: steps.release.outputs.released == 'true'
- name: Publish package to GitHub Release
uses: python-semantic-release/upload-to-gh-release@v9.8.9
if: steps.release.outputs.released == 'true'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.release.outputs.tag }}
See action.yml for a description of the available options.