diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index ca3ba5333..e607e9ac9 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -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: diff --git a/.github/workflows/test-images.yml b/.github/workflows/test-images.yml index b8fdb3e0e..380d4040c 100644 --- a/.github/workflows/test-images.yml +++ b/.github/workflows/test-images.yml @@ -16,4 +16,7 @@ jobs: uses: "./.github/workflows/docker-image.yml" with: php: ${{ matrix.tag }} - zts: ${{ matrix.zts }} \ No newline at end of file + zts: ${{ matrix.zts }} + secrets: + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} + DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} \ No newline at end of file