From 8acaab6cd98e6302d98f18672f03efc2fb594f52 Mon Sep 17 00:00:00 2001 From: Erik Swanson Date: Sat, 19 Mar 2022 19:05:24 -0700 Subject: [PATCH] Fix release run command It was incorrect to combine yaml folded style with `\`-continuation. --- .github/workflows/build-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 1485a8c..939e677 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -20,10 +20,10 @@ jobs: distribution: 'zulu' - name: Deploy Release with Maven run: > - mvn --batch-mode --no-transfer-progress \ - -Drevision="${GITHUB_REF_NAME##v}" \ - -Dtag="${{ github.ref_name }}" \ - -Dtree="${{ github.ref_name }}" \ + mvn --batch-mode --no-transfer-progress + -Drevision=${GITHUB_REF_NAME##v} + -Dtag=${{ github.ref_name }} + -Dtree=${{ github.ref_name }} deploy env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}