Skip to content

Commit

Permalink
Fix docker-image username and password
Browse files Browse the repository at this point in the history
Signed-off-by: Dusan Malusev <[email protected]>
  • Loading branch information
CodeLieutenant committed Jun 10, 2024
1 parent 704a67b commit 58fa959
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ on:
type: string
description: 'ZTS (Zend Thread Safety)'
required: true
secrets:
DOCKER_USERNAME:
required: true
DOCKER_PASSWORD:
required: true

jobs:
build-docker-image:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ jobs:
uses: "./.github/workflows/docker-image.yml"
with:
php: ${{ matrix.tag }}
zts: ${{ matrix.zts }}
zts: ${{ matrix.zts }}
secrets:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

0 comments on commit 58fa959

Please sign in to comment.