diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 709a7cd..2f93975 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -37,10 +37,14 @@ jobs: RID=$(curl -sf -X POST -H "Authorization: token $GITEA_TOKEN" \ -H "Content-Type: application/json" \ "$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') fi 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 — # we want partial releases to still publish rather than block the # whole pipeline on one big file. diff --git a/README.md b/README.md index 953beed..fd24351 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ # AI VoiceOver -This is the repository for AI_VoiceOver. Modified for Ascension.gg. \ No newline at end of file +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 +``` + +Then copy the `AI_VoiceOverData_Vanilla` folder into `Interface/AddOns`.