diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cdfe089..4da773b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -82,7 +82,7 @@ jobs: outputs: name: ${{ steps.properties.outputs.name }} version: ${{ steps.properties.outputs.version }} - artifact: ${{ steps.properties.outputs.name }}-${{ steps.properties.outputs.version }}.zip + artifact: ${{ steps.properties.outputs.pluginName }}-${{ steps.properties.outputs.version }}.zip changelog: ${{ steps.properties.outputs.changelog }} steps: @@ -112,6 +112,7 @@ jobs: run: | echo "::set-output name=version::$(./gradlew properties --console=plain -q | grep "^version:" | cut -f2- -d ' ')" echo "::set-output name=name::$(./gradlew properties --console=plain -q | grep "^name:" | cut -f2- -d ' ')" + echo "::set-output name=pluginName::$(./gradlew properties --console=plain -q | grep "^pluginName:" | cut -f2- -d ' ')" CHANGELOG=$(./gradlew getChangelog --unreleased --no-header --console=plain -q) CHANGELOG="${CHANGELOG//'%'/'%25'}"