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 7347513 commit 9717143Copy full SHA for 9717143
.github/workflows/android.yml
@@ -15,9 +15,9 @@ jobs:
15
run: |
16
git fetch origin tag temp
17
echo "tag_hash=$(git rev-parse --short refs/tags/temp)" >> "$GITHUB_ENV"
18
- echo "$tag_hash"
+ printf '%s\n' "$tag_hash"
19
echo "release_notes=$(git log $tag_hash..HEAD --oneline --decorate=no)" >> "$GITHUB_ENV"
20
- echo "$release_notes"
+ printf '%s\n' "$release_notes"
21
22
- name: Create release
23
env:
0 commit comments