Skip to content

Commit

Permalink
fix: docker image latest
Browse files Browse the repository at this point in the history
  • Loading branch information
bestlong committed Feb 24, 2025
1 parent 0bafa56 commit 6224d94
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
# "5.6", "7.0", "7.1", "7.2", "7.3",
php_version: ["7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
php_version: ["8.1", "8.2", "8.3", "8.4"]
# continue-on-error: true
steps:
- name: Checkout
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
uses: docker/build-push-action@v5
with:
file: Dockerfile-${{ matrix.php_version }}
# skip linux/arm64, linux/arm/v7,linux/arm/v6
platforms: linux/amd64, linux/386
# skip linux/arm/v7, linux/arm/v6
platforms: linux/amd64, linux/386, linux/arm64
push: ${{ (github.event_name != 'pull_request') && (github.repository == 'laradock/php-fpm') && (github.ref == 'refs/heads/master') }}
tags: ${{ steps.meta.outputs.tags }}
6 changes: 3 additions & 3 deletions .github/workflows/dockerimage_without_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
strategy:
matrix:
# "5.6", "7.0", "7.1", "7.2", "7.3",
php_version: ["7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
continue-on-error: true
php_version: ["7.4", "8.0"]
# continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -51,6 +51,6 @@ jobs:
with:
file: Dockerfile-${{ matrix.php_version }}
# platforms: linux/amd64, linux/386, linux/arm64, linux/arm/v7, linux/arm/v6
platforms: linux/arm64
platforms: linux/amd64, linux/386
push: ${{ (github.event_name != 'pull_request') && (github.repository == 'laradock/php-fpm') && (github.ref == 'refs/heads/master') }}
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit 6224d94

Please sign in to comment.