Skip to content

Commit 2b1a7d6

Browse files
authored
added php8.3 build in github workflow
1 parent 2605fa0 commit 2b1a7d6

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/docker-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
uses: actions/checkout@v3
1515
- name: Copy .env.sample to .env
1616
run: cp .env.sample .env
17+
- name: For php8.3
18+
run: PHP_VERSION=8.3 docker-compose -f docker-compose-publish.yml build
1719
- name: For php8.2
1820
run: PHP_VERSION=8.2 docker-compose -f docker-compose-publish.yml build
1921
- name: For php8.1

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
run: docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
2222
- name: Copy .env.sample to .env
2323
run: cp .env.sample .env
24+
- name: For php8.3
25+
run: PHP_VERSION=8.3 docker-compose -f docker-compose-publish.yml build && PHP_VERSION=8.3 docker-compose -f docker-compose-publish.yml push
2426
- name: For php8.2
2527
run: PHP_VERSION=8.2 docker-compose -f docker-compose-publish.yml build && PHP_VERSION=8.2 docker-compose -f docker-compose-publish.yml push
2628
- name: For php8.1

.github/workflows/docker-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
run: docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
2727
- name: Copy .env.sample to .env
2828
run: cp .env.sample .env
29+
- name: For php8.3
30+
run: PHP_VERSION=8.3 DOCKER_TAG=$GIT_TAG_NAME docker-compose -f docker-compose-publish.yml build && PHP_VERSION=8.3 DOCKER_TAG=$GIT_TAG_NAME docker-compose -f docker-compose-publish.yml push
2931
- name: For php8.2
3032
run: PHP_VERSION=8.2 DOCKER_TAG=$GIT_TAG_NAME docker-compose -f docker-compose-publish.yml build && PHP_VERSION=8.2 DOCKER_TAG=$GIT_TAG_NAME docker-compose -f docker-compose-publish.yml push
3133
- name: For php8.1

0 commit comments

Comments
 (0)