mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Do anki_release upload last
This commit is contained in:
parent
e0727b1bc8
commit
ad34b76fa9
1 changed files with 6 additions and 1 deletions
|
@ -1,9 +1,14 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
shopt -s extglob
|
||||||
|
|
||||||
#export UV_PUBLISH_TOKEN=$(pass show w/pypi-api-test)
|
#export UV_PUBLISH_TOKEN=$(pass show w/pypi-api-test)
|
||||||
#out/extracted/uv/uv publish --index testpypi out/wheels/*
|
#out/extracted/uv/uv publish --index testpypi out/wheels/*
|
||||||
|
|
||||||
export UV_PUBLISH_TOKEN=$(pass show w/pypi-api)
|
export UV_PUBLISH_TOKEN=$(pass show w/pypi-api)
|
||||||
out/extracted/uv/uv publish out/wheels/*
|
|
||||||
|
# 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
|
||||||
|
|
Loading…
Reference in a new issue