forked from entelecheia/hyperfast-python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (45 loc) · 1.16 KB
/
release-patch.yaml
File metadata and controls
51 lines (45 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
name: semantic-release-patch
on:
workflow_call:
workflow_dispatch:
push:
branches:
- patch*
- hotfix*
paths:
- 'src/**'
- 'pyproject.toml'
permissions:
contents: write
issues: write
pull-requests: write
jobs:
build:
# Name the Job
name: semantic-release-patch
# Set the agent to run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.9]
steps:
# Checkout the code base #
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
# set env variable
- name: Set env variable
run: echo "BRANCH=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
# semantic release
- name: Python Semantic Release to PyPI
uses: relekang/python-semantic-release@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository_username: __token__
repository_password: ${{ secrets.PYPI_API_TOKEN }}
additional_options: --patch --verbosity=DEBUG --define=branch=${{ env.BRANCH }}
env:
REPOSITORY_URL: https://test.pypi.org/legacy/