We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
release.yml
1 parent 3e7b957 commit cd42df3Copy full SHA for cd42df3
.github/workflows/release.yml
@@ -75,12 +75,16 @@ jobs:
75
run: |
76
VERSION="${{ runner.temp }}/VERSION"
77
CHANGELOG="${{ runner.temp }}/CHANGELOG.md"
78
+ DESCRIPTION=$(cat << 'EOF')
79
+ ${{ inputs.description }}
80
+ EOF
81
+ )
82
83
npm run release -- \
84
${{ inputs.type != 'stable' && format('--preRelease="{0}"', inputs.type) || ''}} \
85
${{ inputs.dry-run && '--dry-run' || ''}} \
86
--release.name='${{ inputs.name }}' \
- --release.description='${{ inputs.description }}' \
87
+ --release.description="$DESCRIPTION" \
88
--dump.version="$VERSION" \
89
--dump.changelog="$CHANGELOG" \
90
--verbose
0 commit comments