Skip to content

fix: library.json version isn't maintained #7

fix: library.json version isn't maintained

fix: library.json version isn't maintained #7

Workflow file for this run

# SPDX-FileCopyrightText: 2025 Aaron White <w531t4@gmail.com>
# SPDX-License-Identifier: MIT
name: Release
on:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install semantic-release
run: pip install python-semantic-release==10.5.3
- name: Publish release - version
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
semantic-release --config setup.cfg version --no-changelog
- name: Publish release - publish
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
semantic-release --config setup.cfg publish