-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CI Workflow for Conditional Docker Image Push (#159)
* Update CI Workflow for Conditional Docker Image Push - Modified the CI workflow to separate the Docker image build and push actions - Introduced a conditional step for pushing: images are now only pushed if the tag does not contain `-rc` - Ensures that all tagged images, including `-rcX` versions, are built, but only stable releases are pushed - Enhances flexibility and control over the release process in the CI pipeline * Upgrade ruby from 3.3.0 to 3.3.1
- Loading branch information
1 parent
240e02d
commit 4930941
Showing
3 changed files
with
14 additions
and
3 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
3.3.0 | ||
3.3.1 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ruby:3.3.0-alpine3.18 | ||
FROM ruby:3.3.1-alpine3.18 | ||
|
||
# for postgres: postgresql-dev | ||
RUN apk add --no-cache \ | ||
|