|
58 | 58 | |
59 | 59 |
|
60 | 60 | # Set environment variables |
| 61 | + # the original template feeds the whole changelog history to the release draft. we don't need it, |
| 62 | + # and we don't keep a changelog file in the repository |
| 63 | + # CHANGELOG="$(./gradlew getChangelog --unreleased --no-header --console=plain -q)" |
| 64 | + # CHANGELOG="${CHANGELOG//'%'/'%25'}" |
| 65 | + # CHANGELOG="${CHANGELOG//$'\n'/'%0A'}" |
| 66 | + # CHANGELOG="${CHANGELOG//$'\r'/'%0D'}" |
| 67 | + # echo "::set-output name=changelog::$CHANGELOG" |
61 | 68 | - name: Export Properties |
62 | 69 | id: properties |
63 | 70 | shell: bash |
|
66 | 73 | VERSION="$(echo "$PROPERTIES" | grep "^version:" | cut -f2- -d ' ')" |
67 | 74 | NAME="$(echo "$PROPERTIES" | grep "^pluginName:" | cut -f2- -d ' ')" |
68 | 75 | |
69 | | - # the original template feeds the whole changelog history to the release draft. we don't need it, |
70 | | - # and we don't keep a changelog file in the repository |
71 | | - # CHANGELOG="$(./gradlew getChangelog --unreleased --no-header --console=plain -q)" |
72 | | - # CHANGELOG="${CHANGELOG//'%'/'%25'}" |
73 | | - # CHANGELOG="${CHANGELOG//$'\n'/'%0A'}" |
74 | | - # CHANGELOG="${CHANGELOG//$'\r'/'%0D'}" |
75 | | - |
76 | 76 | echo "::set-output name=version::$VERSION" |
77 | 77 | echo "::set-output name=name::$NAME" |
78 | | - # echo "::set-output name=changelog::$CHANGELOG" |
79 | 78 | echo "::set-output name=pluginVerifierHomeDir::~/.pluginVerifier" |
80 | 79 | |
81 | 80 | ./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier |
@@ -166,7 +165,3 @@ jobs: |
166 | 165 | --draft \ |
167 | 166 | --title "v${{ needs.build.outputs.version }}" \ |
168 | 167 | --notes "## $VERSION ATX_2 is reserved for patchChangelog" |
169 | | -# --notes "$(cat << 'EOM' |
170 | | -# ${{ needs.build.outputs.changelog }} |
171 | | -# EOM |
172 | | -# )" |
0 commit comments