Skip to content

Commit

Permalink
Update CI Workflow for Conditional Docker Image Push (#159)
Browse files Browse the repository at this point in the history
* 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
brotandgames authored Apr 24, 2024
1 parent 240e02d commit 4930941
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,27 @@ jobs:
steps:
- name: checkout code
uses: actions/checkout@v2

- name: install buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
version: latest

- name: login to docker hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: build and push the image

- name: build the image
run: |
docker buildx build \
--tag brotandgames/ciao:$(cat ./public/version) \
--platform linux/amd64,linux/arm/v7,linux/arm64 .
- name: push the image
if: "!contains(github.ref, '-rc')"
run: |
docker buildx build --push \
--tag brotandgames/ciao:$(cat ./public/version) \
--tag brotandgames/ciao:latest \
--platform linux/amd64,linux/arm/v7,linux/arm64 .
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.3.1
2 changes: 1 addition & 1 deletion Dockerfile
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 \
Expand Down

0 comments on commit 4930941

Please sign in to comment.