From f0e733bb898e3795f62cd1a893155f2165829f3e Mon Sep 17 00:00:00 2001 From: Korede <128097930+kokelowo@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:31:04 -0600 Subject: [PATCH] Delete .github/workflows/s2c-cb-myapp2-AutoDeployTrigger-52489985-aafe-4360-ab56-34fc37a0552e.yml --- ...r-52489985-aafe-4360-ab56-34fc37a0552e.yml | 45 ------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/s2c-cb-myapp2-AutoDeployTrigger-52489985-aafe-4360-ab56-34fc37a0552e.yml diff --git a/.github/workflows/s2c-cb-myapp2-AutoDeployTrigger-52489985-aafe-4360-ab56-34fc37a0552e.yml b/.github/workflows/s2c-cb-myapp2-AutoDeployTrigger-52489985-aafe-4360-ab56-34fc37a0552e.yml deleted file mode 100644 index abb22bc..0000000 --- a/.github/workflows/s2c-cb-myapp2-AutoDeployTrigger-52489985-aafe-4360-ab56-34fc37a0552e.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Trigger auto deployment for s2c-cb-myapp2 - -# When this action will be executed -on: - # Automatically trigger it when detected changes in repo - push: - branches: - [ main ] - paths: - - '**' - - '.github/workflows/s2c-cb-myapp2-AutoDeployTrigger-52489985-aafe-4360-ab56-34fc37a0552e.yml' - - # Allow manual trigger - workflow_dispatch: - -jobs: - build-and-deploy: - runs-on: ubuntu-latest - permissions: - id-token: write #This is required for requesting the OIDC JWT Token - - steps: - - name: Checkout to the branch - uses: actions/checkout@v2 - - - name: Azure Login - uses: azure/login@v1 - with: - client-id: ${{ secrets.S2CCBMYAPP2_AZURE_CLIENT_ID }} - tenant-id: ${{ secrets.S2CCBMYAPP2_AZURE_TENANT_ID }} - subscription-id: ${{ secrets.S2CCBMYAPP2_AZURE_SUBSCRIPTION_ID }} - - - name: Build and push container image to registry - uses: azure/container-apps-deploy-action@a27cb86c082be375a4529006f4743dd55037e256 - with: - appSourcePath: ${{ github.workspace }} - registryUrl: - registryUsername: ${{ secrets.S2CCBMYAPP2_REGISTRY_USERNAME }} - registryPassword: ${{ secrets.S2CCBMYAPP2_REGISTRY_PASSWORD }} - containerAppName: s2c-cb-myapp2 - resourceGroup: kokelowo-containers - imageToBuild: default/[parameters('containerAppName')]:${{ github.sha }} - - -