build: Update github action #41
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: Docker Image CI | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
tags: | |
- 18-2.6.6 | |
- 20-2.6.6 | |
- 20-2.6.8 | |
- 20-2.6.9 | |
- 20-2.6.10 | |
- 20-2.7.4 | |
- 20-2.7.5 | |
- 20-2.7.6 | |
- 20-2.7.7 | |
- 20-2.7.8 | |
- 20-3.0.2 | |
- 20-3.0.3 | |
- 20-3.1.2 | |
- 22-3.1.2 | |
- 22-3.1.4 | |
steps: | |
# Checkout this repo | |
# https://github.com/actions/checkout | |
- | |
name: Checkout repo | |
uses: actions/checkout@v4 | |
# Login against a Docker registry | |
# https://github.com/docker/login-action | |
- | |
name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: rnters-bot | |
password: ${{ secrets.GH_ACTIONS_PAT }} | |
# Build and push Docker image with Buildx | |
# https://github.com/docker/build-push-action | |
- | |
name: Build and push ${{ matrix.ruby }} | |
uses: docker/build-push-action@v5 | |
with: | |
context: ${{ matrix.tags }}/. | |
no-cache: true | |
push: true | |
tags: ghcr.io/rnters/heroku-rails:${{ matrix.tags }} |