Skip to content

Commit 752ae94

Browse files
authored
Merge pull request #10 from leibniz-psychology/fix-main-deployment-2
build: fix main deployment
2 parents 2be83fb + 46e3c4d commit 752ae94

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/DeployOpencpuMain.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ jobs:
3434
- name: Create php image build based on main and push to a Azure Container Registry (ACR)
3535
if: github.ref_name == 'main' && success()
3636
run: |
37-
DOCKER_BUILDKIT=1 docker build . -t ${{ secrets.ACR_NAME }}.azurecr.io/ocpu/${{ env.APP }}:${{ github.sha }} \
37+
DOCKER_BUILDKIT=1 docker build . -t ${{ secrets.ACR_NAME }}.azurecr.io/${{ env.APP }}:${{ github.sha }} \
3838
--build-arg OCPU_PASS=${{ secrets.OCPU_PASS}} \
3939
--build-arg SSL_KEY=${{ secrets.SSL_KEY}} \
4040
--file .github/workflows/manifests/main/opencpu/Dockerfile
41-
docker push ${{ secrets.ACR_NAME }}.azurecr.io/ocpu/${{ env.APP }}:${{ github.sha }}
41+
docker push ${{ secrets.ACR_NAME }}.azurecr.io/${{ env.APP }}:${{ github.sha }}
4242
4343
- name: set tag latest-prod
4444
run: |

0 commit comments

Comments
 (0)