mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 05:52:22 -04:00
14 lines
401 B
Bash
Executable file
14 lines
401 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
shopt -s extglob
|
|
|
|
#export UV_PUBLISH_TOKEN=$(pass show w/pypi-api-test)
|
|
#out/extracted/uv/uv publish --index testpypi out/wheels/*
|
|
|
|
export UV_PUBLISH_TOKEN=$(pass show w/pypi-api)
|
|
|
|
# Upload all wheels except anki_release*.whl first
|
|
out/extracted/uv/uv publish out/wheels/!(anki_release*).whl
|
|
# Then upload anki_release*.whl
|
|
out/extracted/uv/uv publish out/wheels/anki_release*.whl
|