chore: release tag corrected

This commit is contained in:
Eli Bosley
2025-04-03 11:51:58 -04:00
parent 0f682b5f23
commit d701151729

View File

@@ -140,11 +140,12 @@ jobs:
if: inputs.RELEASE_CREATED == 'true'
env:
GITHUB_TOKEN: ${{ github.token }}
RELEASE_TAG: ${{ inputs.RELEASE_TAG }}
run: |
# For each file in release directory
for file in deploy/*; do
echo "Uploading $file to release..."
gh release upload "${inputs.RELEASE_TAG}" "$file" --clobber
gh release upload "${RELEASE_TAG}" "$file" --clobber
done
- name: Workflow Dispatch and wait