Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ jobs:
- name: Create manifest
run: |
docker manifest create \
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.event.release.tag_name }} \
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }} \
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}-amd64 \
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}-arm64

- name: Push manifest
run: |
docker manifest push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.event.release.tag_name }}
docker manifest push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE="phpswoole/swoole:php8.5-alpine"
ARG BASE_IMAGE="phpswoole/swoole:6.2.0-php8.5-alpine"
ARG PHP_BUILD_DATE="20250925"

FROM $BASE_IMAGE AS compile
Expand Down
4 changes: 2 additions & 2 deletions tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ commandTests:
command: "php"
args: ["-v"]
expectedOutput:
- "PHP 8.5.5 (cli)*"
- "PHP 8.5.4 (cli)*"
- name: 'ImageMagick supported formats'
command: "php"
args: ["-i"]
Expand All @@ -107,7 +107,7 @@ commandTests:
command: "php"
args: ["--re", "swoole"]
expectedOutput:
- ".*version 6.2.1.*"
- ".*version 6.2.0.*"
- name: 'ZIP'
command: "zip"
args: ["-v"]
Expand Down
Loading