22 lines
434 B
YAML
22 lines
434 B
YAML
name: Release
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
|
|
- run: pip install python-semantic-release
|
|
|
|
- run: semantic-release version --push --vcs-release
|
|
env:
|
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} |