We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 045c9c1 commit 0804e9cCopy full SHA for 0804e9c
.github/workflows/build.yaml
@@ -30,13 +30,13 @@ jobs:
30
- name: Login to Azure Container Registry
31
uses: docker/login-action@v3
32
with:
33
- registry: ${{ secrets.DOCKER_REGISTRY }}
34
- username: ${{ secrets.DOCKER_USER }}
+ registry: ${{ vars.DOCKER_REGISTRY }}
+ username: ${{ vars.DOCKER_USER }}
35
password: ${{ secrets.DOCKER_PASSWORD }}
36
- name: Yarn install
37
run: yarn
38
- name: Yarn start
39
run: 'yarn start "${{ matrix.php }}" "linux/amd64,linux/arm64"'
40
env:
41
INPUT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42
- DOCKER _REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
+ DOCKER_REGISTRY: ${{ vars.DOCKER_REGISTRY }}
0 commit comments