-
-
Notifications
You must be signed in to change notification settings - Fork 348
feat(jreleaser/jreleaser): SLSA provenance config #34119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e527acc
refactor(jreleaser/jreleaser): re-scaffold
scop a313898
fix(jreleaser/jreleaser): files
scop 406c851
feat(jreleaser/jreleaser): SLSA provenance config
scop 7e7bd7f
fix(jreleaser/jreleaser): fix `files`
suzuki-shunsuke e5a2792
refactor(jreleaser/jreleaser): use AssetWithoutExt
suzuki-shunsuke 34672d0
Merge branch 'main' into feat/jreleaser-cosign
scop File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,2 +1,10 @@ | ||
| packages: | ||
| - name: jreleaser/jreleaser@v1.24.0 | ||
| - name: jreleaser/jreleaser | ||
| version: v1.16.0 | ||
| - name: jreleaser/jreleaser | ||
| version: v1.10.0 | ||
| - name: jreleaser/jreleaser | ||
| version: v1.5.1 | ||
| - name: jreleaser/jreleaser | ||
| version: v1.2.0 |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,16 +1,88 @@ | ||
| # yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json | ||
| packages: | ||
| - name: jreleaser/jreleaser | ||
| type: github_release | ||
| - type: github_release | ||
| repo_owner: jreleaser | ||
| repo_name: jreleaser | ||
| description: Release projects quickly and easily with JReleaser | ||
| complete_windows_ext: false | ||
| asset: jreleaser-{{trimV .Version}}.zip | ||
| files: | ||
| - name: jreleaser | ||
| src: jreleaser-{{trimV .Version}}/bin/jreleaser | ||
| checksum: | ||
| type: github_release | ||
| asset: jreleaser-{{trimV .Version}}.zip.sha256 | ||
| algorithm: sha256 | ||
| description: ":rocket: Release projects quickly and easily with JReleaser" | ||
| version_filter: not (Version == "early-access") | ||
| version_constraint: "false" | ||
| version_overrides: | ||
| - version_constraint: semver("<= 1.0.0") | ||
| no_asset: true | ||
| - version_constraint: semver("<= 1.2.0") | ||
| asset: jreleaser-native-{{trimV .Version}}-{{.OS}}-{{.Arch}}.{{.Format}} | ||
| format: zip | ||
| rosetta2: true | ||
| files: | ||
| - name: jreleaser | ||
| src: "{{.AssetWithoutExt}}/bin/jreleaser" | ||
| replacements: | ||
| amd64: x86_64 | ||
| darwin: osx | ||
| supported_envs: | ||
| - linux/amd64 | ||
| - darwin | ||
| - version_constraint: semver("<= 1.5.1") | ||
| asset: jreleaser-native-{{trimV .Version}}-{{.OS}}-{{.Arch}}.{{.Format}} | ||
| format: zip | ||
| rosetta2: true | ||
| windows_arm_emulation: true | ||
| files: | ||
| - name: jreleaser | ||
| src: "{{.AssetWithoutExt}}/bin/jreleaser" | ||
| replacements: | ||
| amd64: x86_64 | ||
| darwin: osx | ||
| supported_envs: | ||
| - darwin | ||
| - windows | ||
| - amd64 | ||
| - version_constraint: semver("<= 1.10.0") | ||
| asset: jreleaser-native-{{trimV .Version}}-{{.OS}}-{{.Arch}}.{{.Format}} | ||
| format: zip | ||
| rosetta2: true | ||
| files: | ||
| - name: jreleaser | ||
| src: "{{.AssetWithoutExt}}/bin/jreleaser" | ||
| replacements: | ||
| amd64: x86_64 | ||
| darwin: osx | ||
| supported_envs: | ||
| - linux/amd64 | ||
| - darwin | ||
| - version_constraint: semver("<= 1.16.0") | ||
| asset: jreleaser-native-{{trimV .Version}}-{{.OS}}-{{.Arch}}.{{.Format}} | ||
| format: zip | ||
| windows_arm_emulation: true | ||
| files: | ||
| - name: jreleaser | ||
| src: "{{.AssetWithoutExt}}/bin/jreleaser" | ||
| replacements: | ||
| amd64: x86_64 | ||
| darwin: osx | ||
| overrides: | ||
| - goos: darwin | ||
| replacements: | ||
| arm64: aarch64 | ||
| supported_envs: | ||
| - darwin | ||
| - windows | ||
| - amd64 | ||
| - version_constraint: "true" | ||
| asset: jreleaser-native-{{trimV .Version}}-{{.OS}}-{{.Arch}}.{{.Format}} | ||
| format: zip | ||
| windows_arm_emulation: true | ||
| files: | ||
| - name: jreleaser | ||
| src: "{{.AssetWithoutExt}}/bin/jreleaser" | ||
| replacements: | ||
| amd64: x86_64 | ||
| arm64: aarch64 | ||
| darwin: osx | ||
| overrides: | ||
| - goos: windows | ||
| replacements: {} | ||
| slsa_provenance: | ||
| type: github_release | ||
| asset: jreleaser-all-{{trimV .Version}}.intoto.jsonl | ||
| source_tag: "-" | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| # yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/aqua-generate-registry.json | ||
| name: jreleaser/jreleaser | ||
| all_assets_filter: Asset matches "^jreleaser-native-" | ||
| version_filter: not (Version == "early-access") |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aqua v2.48.0 or later is required.