Skip to content

refactor(ci): Using official Docker build and push #2

refactor(ci): Using official Docker build and push

refactor(ci): Using official Docker build and push #2

Workflow file for this run

name: Docker
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- 82
- 83
steps:
- uses: actions/checkout@v3
- name: Build and push Docker images
uses: docker/[email protected]
with:
build-args: PHP=${{ matrix.php }}
tags: opencodeco/phpctl:php${{ matrix.php }}