Skip to content

Commit

Permalink
fix multi line execution on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Hoß committed Nov 7, 2022
1 parent 8ea6981 commit ff178b4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,16 @@ jobs:
- id: verify
if: needs.prepare.outputs.commit_count > 0
name: Verify Project
run: |
mvn \
--batch-mode \
--activate-profiles release \
--define revision=${{ needs.prepare.outputs.release_version }} \
--define skipNativeBuild=false \
--define pgp.secretkey=keyfile:signing.key.asc \
--define pgp.passphrase=literal:${{ secrets.GPG_SECRET_KEY_PASSWORD }} \
--define project.build.outputTimestamp=${{ needs.prepare.outputs.build_timestamp }} \
verify
run: >
mvn
--batch-mode
--activate-profiles release
--define revision=${{ needs.prepare.outputs.release_version }}
--define skipNativeBuild=false
--define pgp.secretkey=keyfile:signing.key.asc
--define pgp.passphrase=literal:${{ secrets.GPG_SECRET_KEY_PASSWORD }}
--define project.build.outputTimestamp=${{ needs.prepare.outputs.build_timestamp }}
verify
- id: mac-checksum
name: Capture MacOS SHA256 Checksum
if: needs.prepare.outputs.commit_count > 0 && runner.os == 'macOS'
Expand Down

0 comments on commit ff178b4

Please sign in to comment.