ci: trying to add build docker image

This commit is contained in:
2023-10-10 10:33:08 +07:00
parent 949dcc147d
commit 9ccb6e57a3
2 changed files with 72 additions and 0 deletions

View File

@@ -49,3 +49,59 @@ jobs:
run: composer update
- name: Run phpstan
run: vendor/bin/phpstan analyse src tests
build-tag:
runs-on: ubuntu-22.04
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
needs:
- tests
- lint
- analyze
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build docker image
run: >-
DOCKER_BUILDKIT=1 docker build
--build-arg BUILDKIT_INLINE_CACHE=1
--build-arg PHP_VERSION=${{ env.DOCKER_RUNTIME_PHP_VERSION }}
--build-arg COMPOSER_VERSION=${{ env.DOCKER_RUNTIME_COMPOSER_VERSION }}
--tag=dannecron/coverage-merger:latest
--file=./.github/Dockerfile .
- name: Login to docker hub
uses: actions-hub/docker/login@master
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- name: Push docker image to docker-hub
uses: actions-hub/docker@master
with:
args: push dannecron/coverage-merger:${{ github.ref_name }}
build-main:
runs-on: ubuntu-22.04
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs:
- tests
- lint
- analyze
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build docker image
run: >-
DOCKER_BUILDKIT=1 docker build
--build-arg BUILDKIT_INLINE_CACHE=1
--build-arg PHP_VERSION=${{ env.DOCKER_RUNTIME_PHP_VERSION }}
--build-arg COMPOSER_VERSION=${{ env.DOCKER_RUNTIME_COMPOSER_VERSION }}
--tag=dannecron/coverage-merger:latest
--file=./.github/Dockerfile .
- name: Login to docker hub
uses: actions-hub/docker/login@master
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- name: Push docker image to docker-hub
uses: actions-hub/docker@master
with:
args: push dannecron/coverage-merger:latest