mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-02-11 17:01:11 +00:00
63 lines
No EOL
1.8 KiB
YAML
63 lines
No EOL
1.8 KiB
YAML
# 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'
|
|
|