Skip to content

Build and Publish Images #10

Build and Publish Images

Build and Publish Images #10

name: Build and Publish Images
on:
workflow_dispatch:
jobs:
build:
name: Build Images
strategy:
fail-fast: false
matrix:
RUBY_VERSION:
- 3.3.0
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Pre-build Dev Container Image
uses: devcontainers/[email protected]
env:
RUBY_VERSION: ${{ matrix.RUBY_VERSION }}
with:
imageName: ghcr.io/rails/devcontainer/images/ruby
cacheFrom: ghcr.io/rails/devcontainer/images/ruby
imageTag: 0.3.0-${{ matrix.RUBY_VERSION }},${{ matrix.RUBY_VERSION }}
subFolder: images/ruby
push: always
platform: linux/arm64,linux/amd64