Skip to content

prepare for docker builds in CI #13

prepare for docker builds in CI

prepare for docker builds in CI #13

Workflow file for this run

name: EasyCrypt Docker Containers Build and Publish
on:
push:
branches:
- 'main'
- 'latest'
tags:
- 'r[0-9]+.[0-9]+'
workflow_dispatch

Check failure on line 10 in .github/workflows/docker.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
jobs:
make-image:
name: Make and Publish Container Images
runs-on: ubuntu-24.04
strategy:
fail-fast: true
matrix:
target: [base, build, test]
steps:
- uses: actions/checkout@v4
- name: Install docker and docker-buildx
run: apt install docker docker-buildx
- name: Build ${{ matrix.target }} Image
run: TAG=${{ github.ref_name }} VARIANT=${{ matrix.target }} make -C scripts/docker publish