-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update java release to do sigstore sign on github
This still needs a user to run the release script to sign with pgp locally and push the bundle to maven central. Signed-off-by: Appu Goundan <[email protected]>
- Loading branch information
1 parent
38622d0
commit 1d8cd3b
Showing
3 changed files
with
66 additions
and
83 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,13 +22,11 @@ jobs: | |
build: | ||
runs-on: ubuntu-latest | ||
needs: [ci, strip-tag] | ||
outputs: | ||
hashes: ${{ steps.hash.outputs.hashes }} | ||
permissions: | ||
id-token: write # to sign with sigstore | ||
steps: | ||
- name: checkout tag | ||
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 | ||
with: | ||
ref: "${{ github.ref }}" | ||
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 | ||
|
@@ -37,23 +35,16 @@ jobs: | |
distribution: 'temurin' | ||
|
||
- name: Build project | ||
working-directory: ./java | ||
run: | | ||
# override the version in gradle.properties | ||
cd java | ||
./gradlew clean createReleaseBundle -Pversion=${{ needs.strip-tag.outputs.version }} | ||
- name: Hash Artifacts | ||
id: hash | ||
run: | | ||
cd java/build/release | ||
echo "hashes=$(sha256sum ./* | base64 -w0)" >> $GITHUB_OUTPUT | ||
sha256sum ./* | ||
# we have to do some post processing with pgp signatures, cause those secrets aren't online yet | ||
./gradlew clean createReleaseBundle -Pversion=${{ needs.strip-tag.outputs.version }} -Prelease -PskipPgpSigning | ||
- name: Upload build artifacts | ||
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | ||
with: | ||
name: project-release-artifacts | ||
path: ./java/build/release/ | ||
path: ./java/build/libs/protobuf-specs-*-bundle.jar | ||
if-no-files-found: error | ||
|
||
create-release: | ||
|
@@ -67,23 +58,9 @@ jobs: | |
with: | ||
name: project-release-artifacts | ||
path: ./release/ | ||
- name: Create draft release | ||
- name: Create release | ||
uses: softprops/action-gh-release@69320dbe05506a9a39fc8ae11030b214ec2d1f87 # v2.0.5 | ||
with: | ||
name: ${{ github.ref_name }} | ||
tag_name: ${{ github.ref_name }} | ||
files: ./release/* | ||
prerelease: true | ||
|
||
provenance: | ||
needs: [build, strip-tag, create-release] | ||
permissions: | ||
actions: read # To read the workflow path. | ||
id-token: write # To sign the provenance. | ||
contents: write | ||
uses: slsa-framework/slsa-github-generator/.github/workflows/[email protected] | ||
with: | ||
attestation-name: "protobuf-specs-${{ needs.strip-tag.outputs.version }}.attestation.intoto.jsonl" | ||
upload-assets: true | ||
base64-subjects: "${{ needs.build.outputs.hashes }}" | ||
upload-tag-name: "${{ github.ref_name }}" # Upload to tag rather than generate a new release |
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
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