ci(bootstrap_archives): do not escape multiline output

It seems to be causing issues. Let's see if disabling it helps. If not,
I'll open up a new issue to address the same, cause I am not sure of
what's the correct way of fixing it
This commit is contained in:
Yaksh Bariya 2022-12-28 16:45:20 +05:30
parent 35dc6584c8
commit 7cee2f3d37
No known key found for this signature in database
GPG Key ID: F7486BA7D3D27581
1 changed files with 0 additions and 3 deletions

View File

@ -53,9 +53,6 @@ jobs:
run: |
find . -maxdepth 1 -type f -name "bootstrap-*.zip" -exec sha256sum {} \; | sed "s| ./| |g" | sort -k2 > bootstraps.sha256sum
checksums=$(printf 'SHA-256:\n```\n%s\n```\n' "$(sha256sum *.zip)")
checksums="${checksums//'%'/'%25'}"
checksums="${checksums//$'\n'/'%0A'}"
checksums="${checksums//$'\r'/'%0D'}"
echo "checksums=$checksums" >> $GITHUB_OUTPUT
- name: Create new tag
id: get_tag