Skip to content

Commit

Permalink
Issue-802: remove sed and use ascii export
Browse files Browse the repository at this point in the history
Signed-off-by: l-1squared <[email protected]>
  • Loading branch information
l-1squared committed Nov 24, 2023
1 parent a56a1e2 commit 67c671a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/mock_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ jobs:
- name: set an alternate version
run: "source scripts/source_files/helper_functions.sh && updateAllVersionInformation ${VERSION}"
- name: Attempt mock release
run: ./gradlew test publishMavenPublicationToMavenLocal publishMavenPublicationToMavenRepository -PsigningKey=$(gpg --batch --pinentry-mode=loopback --yes --passphrase "${GPG_PASSWORD}" --export-secret-key "${GPG_KEY_ID}" | sed -e '/^---.*/d' | tr -d '\n') -PsigningPassword="${GPG_PASSWORD}"
run: >
./gradlew test publishMavenPublicationToMavenLocal publishMavenPublicationToMavenRepository
-PsigningKey=$(gpg --batch --pinentry-mode=loopback --yes --passphrase "${GPG_PASSWORD}" --armor --export-secret-key "${GPG_KEY_ID}")
-PsigningPassword="${GPG_PASSWORD}"
- name: Upload test results html files
continue-on-error: true
if: ${{failure()}}
Expand Down

0 comments on commit 67c671a

Please sign in to comment.