Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
david-i-berry committed Aug 21, 2024
1 parent 6c80d28 commit c807ed2
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ on:
[push, release]

jobs:
build-dist-artefacts:
build-dist-artefacts-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build
- name: Setup
run: |
python -m pip install build
python -m pip install build twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PWD }}
run:
python -m build
ls -althF dist
twine upload -r testpypi dist/*

0 comments on commit c807ed2

Please sign in to comment.