Skip to content

Commit

Permalink
chore: set multiline string to env var in workflow (#1123)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubha-rajan authored Jan 18, 2023
1 parent 582d70e commit fa5ca3b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ jobs:
BUCKET_NAME: '${{ secrets.RELEASE_BUCKET_NAME }}'
run: |
./.release/generate_sha.sh
echo "RELEASE_TABLE=$(cat release_table.md)" >> $GITHUB_ENV
echo 'RELEASE_TABLE<<EOF' >> $GITHUB_ENV
cat release_table.md >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: Update Release Notes
id: update_release
uses: tubone24/update_release@v1.0
Expand Down

0 comments on commit fa5ca3b

Please sign in to comment.