Skip to content

Commit

Permalink
build.yml: drop unused GitHub output
Browse files Browse the repository at this point in the history
Last usage of `${{ steps.properties.outputs.name }}` in GitHub Actions
workflow "Build" was removed in commit d8648e5 ("GitHub Actions general
performance refactoring", 2021-09-30).  Drop initialization of this
output from the step "Export Properties".
  • Loading branch information
rybak authored and hsz committed Jul 7, 2023
1 parent afe7117 commit 30506fb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,9 @@ jobs:
run: |
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 --console=plain -q)"
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "name=$NAME" >> $GITHUB_OUTPUT
echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT
echo "changelog<<EOF" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 30506fb

Please sign in to comment.