Skip to content

Bring everything up to date #138

Bring everything up to date

Bring everything up to date #138

Workflow file for this run

name: Images CI
on:
push:
branches: [main]
paths:
- 'images/**'
- '.github/workflows/images-ci.yml'
pull_request:
branches: [main]
paths:
- 'images/**'
- '.github/workflows/images-ci.yml'
jobs:
build:
name: Checking ${{ matrix.version }} on ${{ matrix.channel }}
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
version:
- 'main'
- '0.14'
channel:
- stable
- nightly
env:
IMAGE_NAME: ${{ github.repository }}-${{ matrix.version }}-${{ matrix.channel }}-${{ github.sha }}
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: image=moby/buildkit:v0.11.6
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: images
file: images/Dockerfile
build-args: |
version=${{ matrix.version }}
channel=${{ matrix.channel }}
push: false
cache-from: type=gha,scope=${{ matrix.version }}-${{ matrix.channel }}
cache-to: type=gha,scope=${{ matrix.version }}-${{ matrix.channel }},mode=max
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}