Merge branch 'main' of https://github.com/ICEI-PUC-Minas-PMV-ADS/pmv-… #113
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and deploy Emprestimos.API to Azure Web App | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| paths: | ||
| - 'src/backend/Emprestimos.API/**' | ||
| workflow_dispatch: | ||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up .NET Core | ||
| uses: actions/setup-dotnet@v4 | ||
| with: | ||
| dotnet-version: '8.x' | ||
| - name: Build | ||
| run: dotnet build src/backend/Emprestimos.API/Emprestimos.API.csproj --configuration Release | ||
| - name: Publish | ||
| run: dotnet publish src/backend/Emprestimos.API/Emprestimos.API.csproj -c Release -o ${{env.DOTNET_ROOT}}/myapp | ||
| - name: Zip artifact | ||
| run: cd ${{env.DOTNET_ROOT}} && zip -r myapp.zip myapp | ||
| - name: Upload artifact | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: emprestimos-app | ||
| path: ${{env.DOTNET_ROOT}}/myapp.zip | ||
| deploy: | ||
| runs-on: ubuntu-latest | ||
| needs: build | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
| steps: | ||
| - name: Download artifact | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: emprestimos-app | ||
| path: ./artifact | ||
| - name: Login to Azure | ||
| uses: azure/login@v2 | ||
| with: | ||
| client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_53A764BA120245DAA629D6794EAF9C22 }} | ||
| tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_39CBE0C302F2432EABACBFABADBBD12F }} | ||
| subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_436374D41D6C44689EDBFDE45E3572D7 }} | ||
| - name: Deploy to Azure Web App | ||
| uses: azure/webapps-deploy@v3 | ||
| with: | ||
| app-name: 'Emprestimos' | ||
| slot-name: 'Production' | ||
| package: ./artifact/myapp.zip | ||