Skip to content

bump: version 0.1.3 → 0.1.4 #24

bump: version 0.1.3 → 0.1.4

bump: version 0.1.3 → 0.1.4 #24

Workflow file for this run

name: Build and Release
permissions:
contents: write
on:
push:
branches:
- main
jobs:
bump-version:
if: "!startsWith(github.event.head_commit.message, 'bump:')"
runs-on: ubuntu-latest
name: Bump version and create changelog with commitizen
steps:
- name: Check out
uses: actions/checkout@v4
with:
fetch-depth: 0
ssh-key: "${{ secrets.SSH_KEY }}"
# token: ${{ secrets.PAT }}
- name: Bump version and create changelog
uses: commitizen-tools/[email protected]
with:
push: false
# github_token: ${{ secrets.PAT }}
- name: Push using ssh
run: |
git push origin main --tags
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Build package
run: uv build
- name: Release
uses: softprops/[email protected]
with:
files: dist/*
tag_name: ${{ env.REVISION }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}