mirror of
https://github.com/Dannecron/coverage-merger.git
synced 2025-12-26 00:02:35 +03:00
ci: trying to add build docker image
This commit is contained in:
16
.github/Dockerfile
vendored
Normal file
16
.github/Dockerfile
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
ARG PHP_VERSION=8.2.11
|
||||
ARG COMPOSER_VERSION=2.6.5
|
||||
|
||||
FROM php:${PHP_VERSION}-cli-alpine
|
||||
|
||||
COPY --from=composer:${COMPOSER_VERSION} /usr/bin/composer /usr/bin/composer
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY composer.json composer.json
|
||||
RUN composer update --no-dev
|
||||
|
||||
COPY merger merger
|
||||
COPY src src
|
||||
|
||||
ENTRYPOINT ["/app/merger"]
|
||||
56
.github/workflows/ci.yml
vendored
56
.github/workflows/ci.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user