bump php 7.x versions. Add image for php 8.0. Update reamde, ci.

This commit is contained in:
2021-01-12 18:47:01 +07:00
parent 0325f7a9b8
commit c68123d24b
6 changed files with 69 additions and 16 deletions

View File

@@ -42,6 +42,13 @@ jobs:
docker tag local-composer:7.4 dannecron/php-for-dev:latest
echo "Done"
- name: Build the Docker images 8.0
run: |
docker build --tag=local-composer:8.0 ./v8.0
docker run --rm local-composer:8.0 php -v
docker tag local-composer:8.0 dannecron/php-for-dev:8.0
echo "Done"
- name: push 7.2 image to docker hub
if: success()
uses: actions-hub/docker@master
@@ -60,6 +67,12 @@ jobs:
with:
args: push dannecron/php-for-dev:7.4
- name: push 8.0 image to docker hub
if: success()
uses: actions-hub/docker@master
with:
args: push dannecron/php-for-dev:8.0
- name: push latest image to docker hub
if: success()
uses: actions-hub/docker@master