Skip to content

Commit

Permalink
Fix release run command
Browse files Browse the repository at this point in the history
It was incorrect to combine yaml folded style with `\`-continuation.
  • Loading branch information
eriksw committed Mar 20, 2022
1 parent 3c02347 commit 8acaab6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 8acaab6

Please sign in to comment.