Issue-802: Try to sign a publication #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Mock-release JGiven" | |
on: [pull_request, push] | |
jobs: | |
mock-release-jgiven: | |
name: Mock-release JGiven | |
runs-on: ubuntu-latest | |
env: | |
SONATYPE_PASSWORD: 'notARealPassword' | |
SONATYPE_USERNAME: 'notARealUsername' | |
GPG_PASSWORD: 'espalhando' | |
GPG_KEY_ID: 'notARealKeyId@example.com' | |
VERSION: '0.0.1-TEST' | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3.13.0 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Set up openpgp signing keys | |
run: | | |
gpg --quick-gen-key --batch --passphrase "${GPG_PASSWORD}" "${GPG_KEY_ID}" | |
- name: source release helpers | |
run: | | |
source scripts/source_files/release_functions.sh | |
source scripts/source_files/helper_functions.sh | |
- name: set to inconspicuous version | |
run: updateAllVersionInformation ${VERSION} | |
- name: Attempt mock release | |
run: > | |
./gradlew test signJGivenPluginPluginMarkerMavenPublication signMavenPublication signPluginMavenPublication publishToMavenLocal | |
"-PsigningKey=$(gpg --export-secret-key -a "${GPG_KEY_ID}" | sed -e '/^---.*/d' | tr -d '\n')" | |
"-PsigningPassword=${GPG_PASSWORD}" --debug | |
- uses: actions/upload-artifact@v3.1.3 | |
with: | |
name: test-report_${{matrix.java}}_${{matrix.junit}} | |
path: /home/runner/work/JGiven/JGiven/*/build/reports/tests | |
if-no-files-found: ignore | |