Skip to content

Commit 1b2d5ae

Browse files
authored
Merge pull request #83 from smkent/ci-cd-pypi
Apply CI/CD workflow updates from template, enable PyPI publish
2 parents 2c96f9e + 3366570 commit 1b2d5ae

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

β€Ž.github/workflows/cd.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name: Release
33

44
env:
5-
ENABLE_PYPI_PUBLISH: false
6-
ENABLE_TEST_PYPI_PUBLISH: false
5+
ENABLE_PYPI_PUBLISH: true
6+
ENABLE_TEST_PYPI_PUBLISH: true
77
RELEASE_PYTHON_VERSION: "3.11"
88
RELEASE_POETRY_VERSION: "1.3"
99

@@ -34,10 +34,6 @@ jobs:
3434
poetry_version: ${{ env.RELEASE_POETRY_VERSION }}
3535

3636
- name: πŸ”₯ Test
37-
env:
38-
# https://github.com/python-poetry/poetry/issues/1917
39-
# https://github.com/actions/runner-images/issues/6185
40-
PYTHON_KEYRING_BACKEND: "keyring.backends.null.Keyring"
4137
run: poetry run poe test
4238

4339
- name: πŸš’ Create test summary
@@ -68,4 +64,4 @@ jobs:
6864

6965
concurrency:
7066
group: ${{ github.workflow }}-${{ github.ref }}
71-
cancel-in-progress: true
67+
cancel-in-progress: false

β€Ž.github/workflows/ci.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ jobs:
4242
poetry_version: ${{ matrix.poetry-version }}
4343

4444
- name: πŸ”₯ Test
45-
env:
46-
# https://github.com/python-poetry/poetry/issues/1917
47-
# https://github.com/actions/runner-images/issues/6185
48-
PYTHON_KEYRING_BACKEND: "keyring.backends.null.Keyring"
4945
run: poetry run poe test
5046

5147
- name: πŸš’ Create test summary
@@ -63,4 +59,4 @@ jobs:
6359

6460
concurrency:
6561
group: ${{ github.workflow }}-${{ github.ref }}
66-
cancel-in-progress: true
62+
cancel-in-progress: false

0 commit comments

Comments
Β (0)