diff --git a/.github/workflows/ansalemo-php-gh-test-AutoDeployTrigger-2fe4fcd0-4abd-4822-97b5-2625054861d5.yml b/.github/workflows/ansalemo-php-gh-test-AutoDeployTrigger-2fe4fcd0-4abd-4822-97b5-2625054861d5.yml new file mode 100644 index 0000000..db7534c --- /dev/null +++ b/.github/workflows/ansalemo-php-gh-test-AutoDeployTrigger-2fe4fcd0-4abd-4822-97b5-2625054861d5.yml @@ -0,0 +1,60 @@ +name: Trigger auto deployment for ansalemo-php-gh-test + +# When this action will be executed +on: + # Automatically trigger it when detected changes in repo + push: + branches: + [ main ] + paths: + - '**' + - '.github/workflows/ansalemo-php-gh-test-AutoDeployTrigger-2fe4fcd0-4abd-4822-97b5-2625054861d5.yml' + + # Allow mannually trigger + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout to the branch + uses: actions/checkout@v2 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + + - name: Log in to container registry + uses: docker/login-action@v1 + with: + registry: ansalemoacr.azurecr.io + username: ${{ secrets.ANSALEMOPHPGHTEST_REGISTRY_USERNAME }} + password: ${{ secrets.ANSALEMOPHPGHTEST_REGISTRY_PASSWORD }} + + - name: Build and push container image to registry + uses: docker/build-push-action@v2 + with: + push: true + tags: ansalemoacr.azurecr.io/ansalemo-php-gh-test:${{ github.sha }} + file: ./Dockerfile + context: ./ + + + deploy: + runs-on: ubuntu-latest + needs: build + + steps: + - name: Azure Login + uses: azure/login@v1 + with: + creds: ${{ secrets.ANSALEMOPHPGHTEST_AZURE_CREDENTIALS }} + + + - name: Deploy to containerapp + uses: azure/CLI@v1 + with: + inlineScript: | + az config set extension.use_dynamic_install=yes_without_prompt + az containerapp registry set -n ansalemo-php-gh-test -g ansalemo-rg --server ansalemoacr.azurecr.io --username ${{ secrets.ANSALEMOPHPGHTEST_REGISTRY_USERNAME }} --password ${{ secrets.ANSALEMOPHPGHTEST_REGISTRY_PASSWORD }} + az containerapp update -n ansalemo-php-gh-test -g ansalemo-rg --image ansalemoacr.azurecr.io/ansalemo-php-gh-test:${{ github.sha }}