We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb972ec commit 0c3e6a1Copy full SHA for 0c3e6a1
.github/workflows/branch.yml
@@ -99,15 +99,15 @@ jobs:
99
- name: Login to registry
100
uses: docker/login-action@v3
101
with:
102
- registry: ${{ DOCKER_REGISTRY }}
+ registry: ${{ secrets.DOCKER_REGISTRY }}
103
username: ${{ secrets.DOCKER_LOGIN }}
104
password: ${{ secrets.DOCKER_PASSWD }}
105
- name: Build and push Docker image
106
uses: docker/build-push-action@v5
107
108
context: .
109
push: true
110
- tags: $DOCKER_REGISTRY/api-php:$DOCKER_BRANCH
+ tags: ${{ secrets.DOCKER_REGISTRY }}/api-php:$DOCKER_BRANCH
111
build-args: |
112
APP_ENV=${{ env.APP_ENV }}
113
DATABASE_URL=${{ env.DATABASE_URL }}
0 commit comments