Skip to content

Commit

Permalink
Build uber jar for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Niffler committed Jan 16, 2024
1 parent 762053a commit bad9718
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main_countdown-web-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
java-version: '17'

- name: Build with Maven
run: mvn clean install
run: mvn clean install -Dquarkus.package.type=uber-jar

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
Expand All @@ -36,21 +36,21 @@ jobs:
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
permissions:
id-token: write #This is required for requesting the JWT
permissions:
id-token: write #This is required for requesting the JWT

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
with:
name: java-app

- name: Login to Azure
uses: azure/login@v1
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_C47CB3E7AA154C9EAE59C265618E4962 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_0F1A3316F9084309B81599F7BF0F4D40 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_36074CB5CBE94118AE500F2D55C15236 }}

- name: Login to Azure
uses: azure/login@v1
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_C47CB3E7AA154C9EAE59C265618E4962 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_0F1A3316F9084309B81599F7BF0F4D40 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_36074CB5CBE94118AE500F2D55C15236 }}

- name: Deploy to Azure Web App
id: deploy-to-webapp
Expand Down

0 comments on commit bad9718

Please sign in to comment.