We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ee3dd0 commit 33f4b5cCopy full SHA for 33f4b5c
.github/workflows/bootstrap_archives.yml
@@ -40,7 +40,12 @@ jobs:
40
path: ./
41
- name: Get checksums
42
id: get_checksums
43
- run: echo "::set-output name=checksums::$(sha256sum *.zip)"
+ run: |
44
+ checksums=$(printf 'SHA-256:\n```\n%s\n```\n' "$(sha256sum *.zip)")
45
+ checksums="${checksums//'%'/'%25'}"
46
+ checksums="${checksums//$'\n'/'%0A'}"
47
+ checksums="${checksums//$'\r'/'%0D'}"
48
+ echo "::set-output name=checksums::$checksums"
49
- name: Create new tag
50
id: get_tag
51
run: |
@@ -63,4 +68,4 @@ jobs:
63
68
file_glob: true
64
69
release_name: "Bootstrap archives for Termux application"
65
70
tag: ${{ steps.get_tag.outputs.tag_name }}
66
- body: "```${{ steps.get_checksums.outputs.checksums }}```"
71
+ body: ${{ steps.get_checksums.outputs.checksums }}
0 commit comments