Skip to content

Commit

Permalink
chore(ci): base64 encoding adding a new line after 76 char (#2666)
Browse files Browse the repository at this point in the history
Co-authored-by: Oussama Hassine <oussama.has100@gmail.com>

(cherry picked from commit 5daa694)
  • Loading branch information
MohamadJaara committed Feb 6, 2024
1 parent 9caf09c commit 5be1a7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cherry-pick-rc-to-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ jobs:
cd ..
git add ${{ env.SUBMODULE_NAME }}
git commit -m "Update submodule ${{ env.SUBMODULE_NAME }} to latest from ${{ env.TARGET_BRANCH }}"
echo "lastCommitMessage=$LAST_COMMIT_MESSAGE" >> $GITHUB_ENV
# Base64 encode the commit message to avoid issues with newlines and special characters
echo "lastCommitMessageBase64=$(echo "$LAST_COMMIT_MESSAGE" | base64 -w 0 )" >> $GITHUB_ENV
- name: Get Cherry-pick commit
id: get-cherry
Expand Down
2 changes: 1 addition & 1 deletion kalium

0 comments on commit 5be1a7e

Please sign in to comment.