fix regex

This commit is contained in:
Kenneth Bingham 2025-02-24 14:07:01 -05:00
parent 3d5519117c
commit ad89a719aa
No known key found for this signature in database
GPG Key ID: 31709281860130B6

View File

@ -50,7 +50,7 @@ jobs:
id: source id: source
shell: bash shell: bash
run: | run: |
CHECKSUM=$(grep -E '\bsource\.tar\.gz$' checksums.sha256.txt | cut -d' ' -f1) CHECKSUM=$(grep -E "\bsource-${{ github.ref_name }}\.tar\.gz$" checksums.sha256.txt | cut -d' ' -f1)
echo "sha256=${CHECKSUM}" | tee -a "$GITHUB_OUTPUT" echo "sha256=${CHECKSUM}" | tee -a "$GITHUB_OUTPUT"
- name: Upload Release Source Archive to Homebrew - name: Upload Release Source Archive to Homebrew