Skip to content

Commit

Permalink
ci(GitHubWorkflows): adds publish and adjust job names to be more rea…
Browse files Browse the repository at this point in the history
…dable
  • Loading branch information
SecKatie committed May 21, 2024
1 parent 9c99709 commit b11cce0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- release/*

jobs:
deploy:
test-publish:
runs-on: ubuntu-latest
env:
POETRY_HOME: /opt/poetry
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish to PyPI
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
env:
POETRY_HOME: /opt/poetry
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install poetry
run: |
wget https://raw.githubusercontent.com/python-poetry/install.python-poetry.org/d62875fc05fb20062175cd14d19a96dbefa48640/install-poetry.py
python install-poetry.py --version 1.8.3
- name: Install dependencies
run: |
$POETRY_HOME/bin/poetry install
- name: Configure poetry for PyPI repository
run: |
$POETRY_HOME/bin/poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
- name: Build and publish package
run: |
$POETRY_HOME/bin/poetry publish --build

0 comments on commit b11cce0

Please sign in to comment.