From 5a4990d54008f221e0963038210279bbc17e01e8 Mon Sep 17 00:00:00 2001 From: Kenneth Jao Date: Thu, 5 Jun 2025 05:12:27 -0400 Subject: [PATCH] Update action.yml --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 6139011..429ae8f 100644 --- a/action.yml +++ b/action.yml @@ -26,8 +26,8 @@ runs: - run: echo "Uploading '${{ inputs.file }}' to '${{ vars.PACK_HOST }}/api/upload/${{ gitea.repository }}/${{ inputs.feature }}'" - name: 'Upload file' run: | - curl -v -H 'Authorization: Bearer ${{ inputs.secret }}' \ - -F sha='${{ gitea.sha }}' \ + curl -v -H 'Authorization: Bearer ${{ inputs.secret }}' \ + -F ref='${{ gitea.ref }}' \ -F prefix='${{ inputs.prefix }}' \ -F filename='${{ inputs.file }}' \ -F data=@'${{ inputs.file }}' \