Compare commits
2 commits
1.3.0-coa.
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 2dafc188c3 | |||
| 9fc99ca58e |
2 changed files with 19 additions and 2 deletions
|
|
@ -37,10 +37,14 @@ jobs:
|
||||||
RID=$(curl -sf -X POST -H "Authorization: token $GITEA_TOKEN" \
|
RID=$(curl -sf -X POST -H "Authorization: token $GITEA_TOKEN" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
"$API/repos/$REPO/releases" \
|
"$API/repos/$REPO/releases" \
|
||||||
-d "$(jq -nc --arg t "$TAG" '{tag_name:$t,name:$t,draft:false,prerelease:false}')" \
|
-d "$(jq -nc --arg t "$TAG" '{tag_name:$t,name:$t,draft:false,prerelease:false,hide_archive_links:true}')" \
|
||||||
| jq -r '.id')
|
| jq -r '.id')
|
||||||
fi
|
fi
|
||||||
echo "release id: $RID"
|
echo "release id: $RID"
|
||||||
|
# Gitea honors hide_archive_links only on edit, not create — PATCH it
|
||||||
|
# so the auto-generated Source Code (zip/tar.gz) links stay hidden.
|
||||||
|
curl -sf -X PATCH -H "Authorization: token $GITEA_TOKEN" -H "Content-Type: application/json" \
|
||||||
|
"$API/repos/$REPO/releases/$RID" -d '{"hide_archive_links":true}' >/dev/null || true
|
||||||
# Upload every dist/*.zip. Per-asset failures don't fail the job —
|
# Upload every dist/*.zip. Per-asset failures don't fail the job —
|
||||||
# we want partial releases to still publish rather than block the
|
# we want partial releases to still publish rather than block the
|
||||||
# whole pipeline on one big file.
|
# whole pipeline on one big file.
|
||||||
|
|
|
||||||
15
README.md
15
README.md
|
|
@ -1,3 +1,16 @@
|
||||||
# AI VoiceOver
|
# AI VoiceOver
|
||||||
|
|
||||||
This is the repository for AI_VoiceOver. Modified for Ascension.gg.
|
This is the repository for AI_VoiceOver. Modified for Ascension.gg.
|
||||||
|
|
||||||
|
## Voice data
|
||||||
|
|
||||||
|
The voice MP3s (~1.2 GiB) are stored in Git LFS in this repo; release zips
|
||||||
|
intentionally ship only the framework and lookup tables (`*.mp3` is
|
||||||
|
`export-ignore`). To get the voice data:
|
||||||
|
|
||||||
|
```
|
||||||
|
git lfs install
|
||||||
|
git clone <this repo>
|
||||||
|
```
|
||||||
|
|
||||||
|
Then copy the `AI_VoiceOverData_Vanilla` folder into `Interface/AddOns`.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue