Skip to content

Commit

Permalink
update variables in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
deminy committed Dec 30, 2024
1 parent 804d415 commit c96969a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/manually_build_nightly_dev_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
uses: docker/setup-buildx-action@v3

-
name: Build and push Docker image phpswoole/swoole:php${{ matrix.php }} on {{ matrix.platform }}
name: Build and push Docker image phpswoole/swoole:php${{ matrix.php }} on ${ matrix.platform }}
id: docker_build
uses: docker/build-push-action@v5
with:
context: .
file: dockerfiles/nightly/php${{ matrix.php }}/cli/Dockerfile
platforms: {{ matrix.platform }}
platforms: ${{ matrix.platform }}
push: false
tags: phpswoole/swoole:php${{ matrix.php }}-dev
build-args: DEV_MODE=true
4 changes: 2 additions & 2 deletions .github/workflows/manually_build_nightly_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
uses: docker/setup-buildx-action@v3

-
name: Build and push Docker image phpswoole/swoole:php${{ matrix.php }} on {{ matrix.platform }}
name: Build and push Docker image phpswoole/swoole:php${{ matrix.php }} on ${{ matrix.platform }}
id: docker_build
uses: docker/build-push-action@v5
with:
context: .
file: dockerfiles/nightly/php${{ matrix.php }}/cli/Dockerfile
platforms: {{ matrix.platform }}
platforms: ${{ matrix.platform }}
push: false
tags: phpswoole/swoole:php${{ matrix.php }}

0 comments on commit c96969a

Please sign in to comment.