refac: rename generic package hosted -> freeradius-hosted

Owner-scoped package registry (pub) hosts all freeradius artifacts; give the bare-metal bundle a self-explanatory name.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Georg K
2026-06-12 05:59:45 +03:00
parent 99e1245ed3
commit e3592514f1
4 changed files with 6 additions and 6 deletions

View File

@@ -134,11 +134,11 @@ jobs:
run: |
set -euo pipefail
chmod +x packaging/hosted/install.sh packaging/hosted/update.sh
tar -czf hosted.tar.gz -C packaging hosted
tar -czf freeradius-hosted.tar.gz -C packaging hosted
ver="${{ needs.prepare.outputs.version }}"
curl -fsSL --user "$PKG_USER:$PKG_TOKEN" \
--upload-file hosted.tar.gz \
"https://${{ env.REGISTRY }}/api/packages/${{ env.OWNER }}/generic/hosted/${ver}/hosted.tar.gz"
--upload-file freeradius-hosted.tar.gz \
"https://${{ env.REGISTRY }}/api/packages/${{ env.OWNER }}/generic/freeradius-hosted/${ver}/freeradius-hosted.tar.gz"
package-helm:
needs: [prepare, build-image]