Skip to content

Bump docker/build-push-action from 5.2.0 to 5.3.0 #85

Bump docker/build-push-action from 5.2.0 to 5.3.0

Bump docker/build-push-action from 5.2.0 to 5.3.0 #85

Workflow file for this run

name: Build Docker images
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
versions: [3.6,3.9]
env:
repo: "govpf/python"
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Build and push
uses: docker/[email protected]
with:
context: .
file: ./${{ matrix.versions }}/Dockerfile
platforms: linux/amd64
pull: true
push: false
tags: |
${{ env.repo }}:${{ matrix.versions }}