Skip to content

Commit

Permalink
ci: combines release and publish into a shared workflow (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
apoclyps authored Nov 6, 2023
1 parent 2bb07a8 commit 6751208
Show file tree
Hide file tree
Showing 4 changed files with 293 additions and 427 deletions.
55 changes: 0 additions & 55 deletions .github/workflows/publish.yml

This file was deleted.

44 changes: 44 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
with:
# https://github.com/google-github-actions/release-please-action#configuration
release-type: python
package-name: poetry-plugin-upgrade
changelog-types: >
[
{"type": "build", "section": "🏗️ Build System", "hidden": true},
Expand All @@ -38,3 +39,46 @@ jobs:
{"type": "test", "section": "✅ Tests", "hidden": true}
]
include-v-in-tag: false

publish:
name: publish
runs-on: ubuntu-latest
needs: release
# only run when a new release is created
if: ${{ needs.release.outputs.release_created }}
strategy:
fail-fast: true
matrix:
environment: [ testpypi, pypi ]
environment: ${{ matrix.environment }}
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install poetry
uses: snok/install-poetry@v1
with:
version: 1.6.1

- name: Build
run: poetry build

- name: Publish testpypi
if: ${{ matrix.environment=='testpypi' }}
env:
POETRY_REPOSITORIES_TESTPYPI_URL: https://test.pypi.org/legacy/
POETRY_HTTP_BASIC_TESTPYPI_USERNAME: __token__
POETRY_HTTP_BASIC_TESTPYPI_PASSWORD: ${{secrets.TESTPYPI_API_TOKEN}}
run: poetry publish --repository testpypi

- name: Publish pypi
if: ${{ matrix.environment=='pypi' }}
env:
POETRY_HTTP_BASIC_PYPI_USERNAME: __token__
POETRY_HTTP_BASIC_PYPI_PASSWORD: ${{secrets.PYPI_API_TOKEN}}
run: poetry publish
Loading

0 comments on commit 6751208

Please sign in to comment.