Skip to content

Commit

Permalink
close: update docker action
Browse files Browse the repository at this point in the history
  • Loading branch information
b4oshany committed Nov 14, 2024
1 parent 378e868 commit cbc39dd
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,10 @@ jobs:
type=semver,pattern={{version}}
type=sha
# Build and push Docker image for PHP 7.4
# - name: Build and push Docker image for PHP 7.4
# uses: docker/build-push-action@v4
# with:
# context: ./docker/php-7.4
# push: ${{ github.event_name != 'pull_request' }}
# tags: ${{ steps.meta.outputs.tags || '7.4-latest' }}
# labels: ${{ steps.meta.outputs.labels }}

# Build and push Docker image for PHP 8.0
- name: Build and push Docker image for PHP 8.0
uses: docker/build-push-action@v4
continue-on-error: true
with:
context: ./docker/php-8.0
push: ${{ github.event_name != 'pull_request' }}
Expand All @@ -65,6 +57,7 @@ jobs:
# Build and push Docker image for PHP 8.1
- name: Build and push Docker image for PHP 8.1
uses: docker/build-push-action@v4
continue-on-error: true
with:
context: ./docker/php-8.1
push: ${{ github.event_name != 'pull_request' }}
Expand All @@ -74,6 +67,7 @@ jobs:
# Build and push Docker image for PHP 8.2
- name: Build and push Docker image for PHP 8.2
uses: docker/build-push-action@v4
continue-on-error: true
with:
context: ./docker/php-8.2
push: ${{ github.event_name != 'pull_request' }}
Expand All @@ -83,6 +77,7 @@ jobs:
# Build and push Docker image for PHP 8.3
- name: Build and push Docker image for PHP 8.3
uses: docker/build-push-action@v4
continue-on-error: true
with:
context: ./docker/php-8.3
push: ${{ github.event_name != 'pull_request' }}
Expand Down

0 comments on commit cbc39dd

Please sign in to comment.