Skip to content

Commit

Permalink
added PHP 8.3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
fbraz3 committed Dec 15, 2023
1 parent 5b036d5 commit 0c10c78
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image-8.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build Docker Image - PHP 8.0
on:
workflow_dispatch:
schedule:
- cron: '20 6 * * 5'
- cron: '25 6 * * 5'

jobs:
docker:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/docker-image-8.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,4 @@ jobs:
build-args: |
PHP_VERSION=8.2
tags: |
fbraz3/php-fpm:latest
fbraz3/php-fpm:8.2
37 changes: 37 additions & 0 deletions .github/workflows/docker-image-8.3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build Docker Image - PHP 8.3

on:
workflow_dispatch:
schedule:
- cron: '10 6 * * 5'

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v4
with:
platforms: linux/amd64,linux/arm64
context: .
push: true
build-args: |
PHP_VERSION=8.3
tags: |
fbraz3/php-fpm:latest
fbraz3/php-fpm:8.3

0 comments on commit 0c10c78

Please sign in to comment.