From 65bbda272e43d11fd9a24254fdff6d928ef847f8 Mon Sep 17 00:00:00 2001 From: azureramakrishna <83686453+azureramakrishna@users.noreply.github.com> Date: Fri, 6 Feb 2026 09:16:16 +0530 Subject: [PATCH] Add or update the Azure App Service build and deployment workflow config --- .github/workflows/main_springapp-demo.yml | 63 +++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 .github/workflows/main_springapp-demo.yml diff --git a/.github/workflows/main_springapp-demo.yml b/.github/workflows/main_springapp-demo.yml new file mode 100644 index 000000000..7f3181d03 --- /dev/null +++ b/.github/workflows/main_springapp-demo.yml @@ -0,0 +1,63 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions + +name: Build and deploy JAR app to Azure Web App - springapp-demo + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: read #This is required for actions/checkout + + steps: + - uses: actions/checkout@v4 + + - name: Set up Java version + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'microsoft' + + - name: Build with Maven + run: mvn clean install + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v4 + with: + name: java-app + path: '${{ github.workspace }}/target/*.jar' + + deploy: + runs-on: ubuntu-latest + needs: build + permissions: + id-token: write #This is required for requesting the JWT + contents: read #This is required for actions/checkout + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v4 + with: + name: java-app + + - name: Login to Azure + uses: azure/login@v2 + with: + client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_4D45C72EB11847BAA533D15BEE34F9AC }} + tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_C4D8848F21FA410C854151A18E9C1934 }} + subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_A0EBF3CAA9F94B26BE8A57973041ECF8 }} + + - name: Deploy to Azure Web App + id: deploy-to-webapp + uses: azure/webapps-deploy@v3 + with: + app-name: 'springapp-demo' + slot-name: 'Production' + package: '*.jar' + \ No newline at end of file