From bbfc61b3351289dda809b96f2905cded5c447311 Mon Sep 17 00:00:00 2001 From: misyaguziya <53165965+misyaguziya@users.noreply.github.com> Date: Thu, 11 Sep 2025 19:05:26 +0900 Subject: [PATCH] [Update] Fix Hugging Face CLI commands for tagging and uploading model --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f38375ef..d0e7eac0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,9 +64,9 @@ jobs: Copy-Item -Path ./VRCT.zip -Destination "$UPLOAD_DIR/VRCT.zip" Copy-Item -Path ./VRCT_cuda.zip -Destination "$UPLOAD_DIR/VRCT_cuda.zip" - hf upload --repo-type model --commit-message "👍️[Update] ${{ env.VERSION }} Release" ms-software/VRCT $UPLOAD_DIR . + hf upload --repo-type model --commit-message "👍️[Update] ${{ env.VERSION }} Release" ms-software/VRCT $UPLOAD_DIR - hf repo tag ms-software/VRCT --repo-type model --message "Release ${{ github.ref_name }}" ${{ github.ref_name }} + hf repo tag create ms-software/VRCT ${{ github.ref_name }} --repo-type model --message "Release ${{ github.ref_name }}" Remove-Item -Recurse -Force $UPLOAD_DIR