Skip to content

Build and Publish Images #2

Build and Publish Images

Build and Publish Images #2

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.2.0-${{ matrix.RUBY_VERSION }}

Check failure on line 53 in .github/workflows/build-and-publish-images.yaml

View workflow run for this annotation

GitHub Actions / Build and Publish Images

Invalid workflow file

The workflow is not valid. .github/workflows/build-and-publish-images.yaml (Line: 53, Col: 13): A sequence was not expected
- ${{ matrix.RUBY_VERSION }} ]
subFolder: images/ruby
push: always