-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (32 loc) · 1.28 KB
/
ci-cd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: CI/CD
on: [push, workflow_dispatch]
env:
DOCKER_BUILDKIT: 1
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
version: ['7.4', '8.1']
type: ['', '-prod']
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Build
run: |
docker build --pull -t kooldev/php:${{ matrix.version }}-nginx-sqlsrv${{ matrix.type }} ${{ matrix.version }}-nginx-sqlsrv${{ matrix.type }}
- name: Tests
run: |
docker run kooldev/php:${{ matrix.version }}-nginx-sqlsrv${{ matrix.type }} php -r "extension_loaded('sqlsrv') or die(1);"
docker run kooldev/php:${{ matrix.version }}-nginx-sqlsrv${{ matrix.type }} php -r "extension_loaded('pdo_sqlsrv') or die(1);"
- name: Login to DockerHub
uses: docker/[email protected]
if: github.ref == 'refs/heads/main' && github.repository == 'kool-dev/docker-php-sqlsrv'
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push to DockerHub
if: github.ref == 'refs/heads/main' && github.repository == 'kool-dev/docker-php-sqlsrv'
run: |
docker push kooldev/php:${{ matrix.version }}-nginx-sqlsrv${{ matrix.type }}