Skip to content

Commit

Permalink
fix: draft release message
Browse files Browse the repository at this point in the history
  • Loading branch information
kristina-solovyova authored and assafgi committed Nov 14, 2023
1 parent d8218de commit e8e85bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/create_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ docker build -t github-token . -f scripts/python.Dockerfile
eval "$(docker run -e "DEPLOY_APP_ID=$DEPLOY_APP_ID" -e "DEPLOY_APP_PRIVATE_KEY=$DEPLOY_APP_PRIVATE_KEY" github-token)"
echo "Fetched github token"
AUTH="Authorization: token $GITHUB_TOKEN"
dist_str=$(printf "%s\n" "${filenames_arr[@]}")
release_body="GA release\n$dist_str"
dist_str=$(printf '\\n%s' "${filenames_arr[@]}")
release_body="GA release$dist_str"
echo "Creating draft release $BUILD_VERSION with body: $release_body"
result=$(curl \
-X POST \
Expand Down

0 comments on commit e8e85bf

Please sign in to comment.