Skip to content

Upgrade Ruby to 3.3.5 and add a request spec #54

Upgrade Ruby to 3.3.5 and add a request spec

Upgrade Ruby to 3.3.5 and add a request spec #54

name: depot-build-and-push
on: push
jobs:
docker:
runs-on: ubuntu-24.04
permissions:
contents: read
pages: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: depot/setup-action@v1
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push with sha + latest tag on master
if: github.ref == 'refs/heads/master'
uses: depot/build-push-action@v1
with:
project: b4qlt63xvg
platforms: linux/amd64,linux/arm64
push: true
tags: |
reclaimthestack/rails-example:latest
reclaimthestack/rails-example:sha-${{ github.sha }}
- name: Build and push with sha tag on feature branches
if: github.ref != 'refs/heads/master'
uses: depot/build-push-action@v1
with:
project: b4qlt63xvg
platforms: linux/amd64,linux/arm64
push: true
tags: |
reclaimthestack/rails-example:sha-${{ github.sha }}