From a29fd25853cb6933445281d900d6e36b50eea20f Mon Sep 17 00:00:00 2001 From: Andrei Rybak Date: Fri, 7 Jul 2023 00:41:12 +0200 Subject: [PATCH] build.yml: drop unused GitHub output 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". (cherry picked from commit 30506fba8ffae6d3d35d6bcdf264c18916b53803) --- .github/workflows/build.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cb1c7bd..01b4160 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,11 +58,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<> $GITHUB_OUTPUT