Skip to content

build

build #269

Workflow file for this run

name: build
on:
schedule:
- cron: "0 8 * * *"
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
build-images:
strategy:
matrix:
version: ['3.7', '3.8', '3.9', '3.10']
name: Build Python Docker images
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: build mp4ansi ${{ matrix.version }} image
run:
docker image build --build-arg PYTHON_VERSION=${{ matrix.version }} -t mp4ansi:${{ matrix.version }} .