ci: added test publish workflow
Some checks failed
/ test-publish (push) Failing after 19s

This commit is contained in:
Daniel Fichtinger 2025-07-13 21:59:53 -04:00
parent e69dd80875
commit 47c542a25b

View file

@ -0,0 +1,21 @@
on: push
jobs:
test-publish:
runs-on: docker
container:
image: node:alpine
steps:
- name: Install dependencies
run: |
apk add --no-cache coreutils uv
- uses: actions/checkout@v4
- name: build
run: |
uv sync
uv build
- name: publish
run: |
uv publish --token ${{ secrets.TEST_PYPI_TOKEN }} \
--publish-url 'https://test.pypi.org/legacy/' \
--check-url 'https://test.pypi.org/simple'