-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
chore: Github action release improvements #5066
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 69 commits
Commits
Show all changes
75 commits
Select commit
Hold shift + click to select a range
24b1087
Github action widows executable signing
denis256 be82403
DigiCert signing action
denis256 2aae863
Merge branch 'main' into windows-gh-action
denis256 4637a16
chore: windows executables signing
denis256 13233a9
chore: improved smartctl check
denis256 a2e2cf7
chore: add version info update
denis256 90ab501
chore: go version colleciton
denis256 f479022
chore: installation fixes
denis256 f0ba99a
Merge branch 'main' into windows-gh-action
denis256 a513890
executable signing
denis256 27416cc
Alias key update
denis256 6d61735
executables signing
denis256 ac0a195
add metadata step
denis256 893ba8e
chore: build file revert
denis256 e0f7fc0
windows signing workflow
denis256 401e7ee
macos signing
denis256 5bef4b3
chore: windows sign cleanup
denis256 bef4415
Windows sign update
denis256 1bc8371
alias sync update
denis256 75dfd5c
gh action update
denis256 97efa92
build script cleanup
denis256 00b4392
sign-windows simplifications
denis256 4bc8f99
digi cert setup
denis256 fd436ad
add sign job
denis256 14cfce0
add passing of SM_KEYPAIR_ALIAS
denis256 541667a
PR cleanup
denis256 bb1264f
chore: simplified step for signing executables
denis256 a7ee851
chore: sign update
denis256 44714c8
Merge branch 'main' into windows-gh-action
denis256 3f72c2f
chore: windows signing simplification
denis256 33eea23
simplified windows sign process
denis256 5dd5376
add version check
denis256 7cdbe71
add health checks
denis256 f1f6095
gh action signup cleanup
denis256 04e936d
Client auth fixes
denis256 b78cd0f
Windows executable sign improvements
denis256 d620308
Merge remote-tracking branch 'origin/main' into windows-gh-action
denis256 fe8aad4
update version info
denis256 0c3e1b4
version sign update
denis256 9dfe50f
Version update
denis256 9f3c940
secrets update
denis256 c59b75b
rsync update
denis256 563d6d0
version updates
denis256 1a3647e
version info update
denis256 32b49d7
path fixes
denis256 659b84b
cert fix
denis256 25f775c
add passing of secrets
denis256 37e34cf
content signing
denis256 05e0d60
release signign
denis256 e21e179
chore: added windows icon setting
denis256 af69df2
go-winres update
denis256 89db66a
sign update
denis256 893fd73
executables sign update
denis256 31406c3
Merge remote-tracking branch 'origin/main' into windows-gh-action
denis256 5e032e3
icon update
denis256 6cc4512
Added step to skip signing
denis256 e9f7d9c
chore: version update
denis256 7b9f4d9
add release detection
denis256 da86120
Added ZIP files signing
denis256 e1d8857
removed no_proxy dependency
denis256 e1b46cf
ZIP file archival
denis256 76a7820
Merge remote-tracking branch 'origin/main' into windows-gh-action
denis256 4f9b8b3
chore: removed reference to master branch
denis256 943253e
Extracted scripts for release process
denis256 7089f71
gon release checksum
denis256 8d72773
chore: extracted release script
denis256 e896af4
extracted summary bash script
denis256 260bd97
Updated JSON configuration
denis256 9a52e71
chore: scripts generation
denis256 f30c4f4
Merge branch 'main' into windows-gh-action
denis256 b2f27a8
Merge branch 'main' into windows-gh-action
denis256 b2ed911
chore: simplified binaries downloading
denis256 6fa1750
chore: extracted json files
denis256 da3e38e
Updated archive names
denis256 f7d568a
readme file update
denis256 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 was deleted.
Oops, something went wrong.
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,69 @@ | ||
| { | ||
| "platforms": [ | ||
| { | ||
| "os": "darwin", | ||
| "arch": "amd64", | ||
| "signed": true, | ||
| "binary": "terragrunt_darwin_amd64" | ||
| }, | ||
| { | ||
| "os": "darwin", | ||
| "arch": "arm64", | ||
| "signed": true, | ||
| "binary": "terragrunt_darwin_arm64" | ||
| }, | ||
| { | ||
| "os": "linux", | ||
| "arch": "386", | ||
| "signed": false, | ||
| "binary": "terragrunt_linux_386" | ||
| }, | ||
| { | ||
| "os": "linux", | ||
| "arch": "amd64", | ||
| "signed": false, | ||
| "binary": "terragrunt_linux_amd64" | ||
| }, | ||
| { | ||
| "os": "linux", | ||
| "arch": "arm64", | ||
| "signed": false, | ||
| "binary": "terragrunt_linux_arm64" | ||
| }, | ||
| { | ||
| "os": "windows", | ||
| "arch": "386", | ||
| "signed": true, | ||
| "binary": "terragrunt_windows_386.exe" | ||
| }, | ||
| { | ||
| "os": "windows", | ||
| "arch": "amd64", | ||
| "signed": true, | ||
| "binary": "terragrunt_windows_amd64.exe" | ||
| } | ||
| ], | ||
| "archive_formats": [ | ||
| { | ||
| "extension": "zip", | ||
| "description": "ZIP archives (preserves +x permissions)" | ||
| }, | ||
| { | ||
| "extension": "tar.gz", | ||
| "description": "TAR.GZ archives (preserves +x permissions)" | ||
| } | ||
| ], | ||
| "additional_files": [ | ||
| { | ||
| "name": "SHA256SUMS", | ||
| "description": "Checksums for all files" | ||
| } | ||
| ], | ||
| "counts": { | ||
| "binaries": 7, | ||
| "archives_per_format": 7, | ||
| "archive_formats": 2, | ||
| "additional_files": 1, | ||
| "total": 22 | ||
| } | ||
| } | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
NIT: I think these values should be computed so that we can't forget to update them later if we add a new platform. I don't think making that change should block merging this PR, though.