Skip to content

Commit 0892b36

Browse files
authored
v1.1.1 (#1)
Build updates * Removing MAJOR / MINOR files and adding image version suffix to images * Adding overlay to build definitions
1 parent 3378a75 commit 0892b36

File tree

5 files changed

+9
-19
lines changed

5 files changed

+9
-19
lines changed

.github/workflows/build_5_6-dev.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
paths:
1010
- '.github/workflows/build_5_6-main.yml'
1111
- '5.6/**'
12+
- 'overlay/**'
1213
- 'VERSION'
1314

1415
jobs:
@@ -26,7 +27,7 @@ jobs:
2627
uses: docker/setup-buildx-action@v1
2728
-
2829
name: Login to DockerHub
29-
uses: docker/login-action@v1
30+
uses: docker/login-action@v1
3031
with:
3132
username: ${{ secrets.DOCKERHUB_USERNAME }}
3233
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/build_5_6-main.yml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
paths:
1010
- '.github/workflows/build_5_6-main.yml'
1111
- '5.6/**'
12+
- 'overlay/**'
1213
- 'VERSION'
1314

1415
jobs:
@@ -18,18 +19,6 @@ jobs:
1819
-
1920
name: Checkout code
2021
uses: actions/checkout@v2
21-
-
22-
name: Read PHP version - major
23-
uses: bencgreen/read-file-action@v1
24-
with:
25-
path: ./5.6/PHP_MAJOR
26-
id: php_major
27-
-
28-
name: Read PHP version - minor
29-
uses: bencgreen/read-file-action@v1
30-
with:
31-
path: ./5.6/PHP_MINOR
32-
id: php_minor
3322
-
3423
name: Read PHP version - revision
3524
uses: bencgreen/read-file-action@v1
@@ -50,7 +39,7 @@ jobs:
5039
uses: docker/setup-buildx-action@v1
5140
-
5241
name: Login to DockerHub
53-
uses: docker/login-action@v1
42+
uses: docker/login-action@v1
5443
with:
5544
username: ${{ secrets.DOCKERHUB_USERNAME }}
5645
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -66,8 +55,10 @@ jobs:
6655
tags: |
6756
bcgdesign/apache-php:latest
6857
bcgdesign/apache-php:${{ steps.version.outputs.content }}
69-
bcgdesign/apache-php:php-${{ steps.php_major.outputs.content }}
70-
bcgdesign/apache-php:php-${{ steps.php_minor.outputs.content }}
58+
bcgdesign/apache-php:php-5
59+
bcgdesign/apache-php:php-5-${{ steps.version.outputs.content }}
60+
bcgdesign/apache-php:php-5.6
61+
bcgdesign/apache-php:php-5.6-${{ steps.version.outputs.content }}
7162
bcgdesign/apache-php:php-${{ steps.php_revision.outputs.content }}
7263
-
7364
name: Image digest

5.6/PHP_MAJOR

Lines changed: 0 additions & 1 deletion
This file was deleted.

5.6/PHP_MINOR

Lines changed: 0 additions & 1 deletion
This file was deleted.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0
1+
1.1.1

0 commit comments

Comments
 (0)