Skip to content

Commit

Permalink
Merge pull request #89 from olivernybroe/test-console-plain
Browse files Browse the repository at this point in the history
  • Loading branch information
olivernybroe authored Oct 1, 2021
2 parents f08dfd1 + 90c6bb3 commit 54cc38f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
id: properties
shell: bash
run: |
PROPERTIES="$(./gradlew properties -q)"
PROPERTIES="$(./gradlew properties --console=plain -q)"
IDE_VERSIONS="$(echo "$PROPERTIES" | grep "^pluginVerifierIdeVersions:" | base64)"
echo "::set-output name=ideVersions::$IDE_VERSIONS"
Expand Down Expand Up @@ -118,10 +118,10 @@ jobs:
id: properties
shell: bash
run: |
PROPERTIES="$(./gradlew properties -q)"
PROPERTIES="$(./gradlew properties --console=plain -q)"
VERSION="$(echo "$PROPERTIES" | grep "^version:" | cut -f2- -d ' ')"
NAME="$(echo "$PROPERTIES" | grep "^pluginName:" | cut -f2- -d ' ')"
CHANGELOG="$(./gradlew getChangelog --unreleased --no-header -q)"
CHANGELOG="$(./gradlew getChangelog --unreleased --no-header --console=plain -q)"
CHANGELOG="${CHANGELOG//'%'/'%25'}"
CHANGELOG="${CHANGELOG//$'\n'/'%0A'}"
CHANGELOG="${CHANGELOG//$'\r'/'%0D'}"
Expand Down

0 comments on commit 54cc38f

Please sign in to comment.