Skip to content

build(deps-dev): bump @commitlint/cli from 20.3.1 to 20.4.0 #86

build(deps-dev): bump @commitlint/cli from 20.3.1 to 20.4.0

build(deps-dev): bump @commitlint/cli from 20.3.1 to 20.4.0 #86

# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#multiline-strings
name: Multiline strings
on: push
jobs:
multiline-strings:
runs-on: ubuntu-latest
steps:
- name: Set the value
run: |
{
echo 'JSON_RESPONSE<<EOF'
curl https://example.com
echo EOF
} >> "$GITHUB_ENV"
- name: Use the value
run: printf '%s\n' "$JSON_RESPONSE"