Skip to content

Commit

Permalink
Merge pull request #21 from retailnext/release-workflow
Browse files Browse the repository at this point in the history
Fix release run command
  • Loading branch information
eriksw authored Mar 20, 2022
2 parents 3c02347 + 8acaab6 commit 5ae6264
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 5ae6264

Please sign in to comment.