Skip to content

build(deps): bump python-semantic-release/python-semantic-release (#47) #25

build(deps): bump python-semantic-release/python-semantic-release (#47)

build(deps): bump python-semantic-release/python-semantic-release (#47) #25

Workflow file for this run

on:
push:
branches:
- main
- develop
permissions:
contents: write
id-token: write
jobs:
release:
runs-on: ubuntu-24.04
steps:
- name: 🚚 Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🐍 Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: 📦 Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: 📥 Install dependencies
run: |
poetry install
- name: 🐍 Python Semantic Release
id: release
uses: python-semantic-release/python-semantic-release@v9.19.1
env:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: 🐍 Publish | Upload to GitHub Release Assets
uses: python-semantic-release/publish-action@v9.16.1
if: steps.release.outputs.released == 'true'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.release.outputs.tag }}