From 370d3acf392f7663cb21f916ad2d2ef2b90a898b Mon Sep 17 00:00:00 2001 From: Andre Brisco <91817010+abrisco@users.noreply.github.com> Date: Sat, 31 Aug 2024 13:05:35 -0700 Subject: [PATCH] Fix release pipeline (#8) Fixes https://github.com/abrisco/rules_pyo3/actions/runs/10647887407/job/29516330210 --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 982f3bd..894c352 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -36,7 +36,7 @@ jobs: run: | # Generate the release notes sed 's/{version}/${{env.RELEASE_VERSION}}/g' ${{ github.workspace }}/.github/release_notes.template \ - | sed 's/{sha256_base64}/${{env.ARCHIVE_SHA256_BASE64}}/g' \ + | sed 's#{sha256_base64}#${{ env.ARCHIVE_SHA256_BASE64 }}#g' \ > ${{ github.workspace }}/.github/release_notes.txt - name: Release uses: softprops/action-gh-release@v1