forked from argoproj/argo-cd
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: (GitHub Actions) Support multiarch builds, image signing (#230)
* Add support for multiarch builds via buildx * Add image signing using cosign * Pin all GitHub actions via [pinact](https://github.com/suzuki-shunsuke/pinact) (this type of pinning is present upstream in [argoproj/argo-cd](https://github.com/argoproj/argo-cd/blob/f1607fee7c3bfad8eb56a53130cf9ac7cc22dd34/.github/workflows/image-reuse.yaml#L61)) * Use `softprops/action-gh-release` in lieu of the now-deprecated `actions/upload-release-asset` action * Support buildx layer caching via GitHub Actions Cache (update `.dockerignore` because of `COPY . .` in Dockerfile) * Support Golang dependency caching in GitHub Actions Cache (bump `actions/setup-go` to `v4.x` where this is enabled by default) * Refactor release workflow to accommodate for new features.
- Loading branch information
Showing
6 changed files
with
216 additions
and
177 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 |
---|---|---|
|
@@ -17,6 +17,8 @@ manifests/ | |
hack/ | ||
docs/ | ||
examples/ | ||
.dockerignore | ||
.git/ | ||
.github/ | ||
!test/fixture | ||
!test/container | ||
|
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
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
Oops, something went wrong.