Skip to content

Commit 244ace2

Browse files
committed
chore: update release-please config
1 parent ab7bb64 commit 244ace2

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/release-please.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ on:
44
push:
55
branches:
66
- main # stable releases
7-
- next # release candidates
8-
- beta # beta releases
9-
- alpha # alpha releases
107

118
permissions:
129
contents: write
@@ -94,7 +91,7 @@ jobs:
9491
run: poetry build
9592

9693
- name: Publish to PyPI
97-
if: ${{ needs.release-please.outputs.prerelease != 'true' }}
94+
if: ${{ needs.release-please.outputs.prerelease == 'false' }}
9895
env:
9996
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
10097
run: poetry publish

.github/workflows/tests-daily.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.8"]
1414
steps:
1515
- name: Checkout repo
1616
uses: actions/checkout@v4
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
strategy:
3131
matrix:
32-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
32+
python-version: ["3.8"]
3333
needs: compile
3434
steps:
3535
- name: Checkout repo

0 commit comments

Comments
 (0)