Skip to content

chore(release): 0.7.5 #22

chore(release): 0.7.5

chore(release): 0.7.5 #22

name: Semantic Release
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
jobs:
semantic-release:
runs-on: ubuntu-latest
concurrency: release
if: github.repository == 'ni-kismet/systemlink-cli'
outputs:
released: ${{ steps.release.outputs.released }}
version: ${{ steps.release.outputs.version }}
tag: ${{ steps.release.outputs.tag }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.HOMEBREW_GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest
- name: Python Semantic Release
id: release
uses: python-semantic-release/python-semantic-release@v9.14.0
with:
github_token: ${{ secrets.HOMEBREW_GITHUB_TOKEN }}
git_committer_name: "github-actions[bot]"
git_committer_email: "github-actions[bot]@users.noreply.github.com"