Skip to content

Commit

Permalink
feat(ci): Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
leocavalcante authored Dec 4, 2023
1 parent bc6ab95 commit a8ab1f5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Docker Image CI
on:
push:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- php82
- php83

steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build --build-arg PHP=${{ matrix.php }} -t opencodeco/phpctl:php${{ matrix.php }} .

0 comments on commit a8ab1f5

Please sign in to comment.