Downgrade ruby from 3.3.1-alpine3.18 to 3.3.0-alpine3.18 #45
Workflow file for this run
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
name: build and push docker image | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
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 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 . | |