-
Notifications
You must be signed in to change notification settings - Fork 14
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
feat(ci): refactor ci/cd to avoid code duplication #353
Conversation
7640356
to
3f3b1ae
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #353 +/- ##
==========================================
+ Coverage 44.53% 50.99% +6.46%
==========================================
Files 64 73 +9
Lines 4188 4334 +146
==========================================
+ Hits 1865 2210 +345
+ Misses 2196 1935 -261
- Partials 127 189 +62 ☔ View full report in Codecov by Sentry. |
This pull request involves significant updates to the GitHub Actions workflows and some minor configuration changes. The main changes include the creation of new workflows for building, pushing, and continuous integration, as well as updates to existing workflows and configuration files.
GitHub Actions Workflows:
New Workflows:
build-and-push.yaml
workflow for building and pushing Docker images with multi-platform support. (.github/workflows/build-and-push.yaml
). Fixes feat(ci): distribute build on multiple runners #340ci.yaml
from the merge ofmain.yaml
andpr.yaml
that were identical (.github/workflows/ci.yaml
)Updated Actions Versions (this will close several Renovate PRs):
conventional-commits.yaml
to use a specific version ofactions/setup-node
. (.github/workflows/conventional-commits.yaml
)docs.yaml
to use specific versions ofactions/setup-python
andactions/cache
. (.github/workflows/docs.yaml
)release.yaml
to use specific versions ofactions/setup-go
andgoreleaser/goreleaser-action
. (.github/workflows/release.yaml
) [1] [2] [3]Configuration Changes:
Goreleaser Configuration:
.goreleaser.yaml
to version 2 and made minor formatting changes. (.goreleaser.yaml
) [1] [2]Dockerfile:
FROM
instruction to use uppercaseAS
for the build stage. (Dockerfile
)