zona/.forgejo/workflows/publish.yml
Daniel Fichtinger 47c542a25b
Some checks failed
/ test-publish (push) Failing after 19s
ci: added test publish workflow
2025-07-13 22:03:19 -04:00

21 lines
515 B
YAML

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'