Skip to content

Add Luan's final considerations PDF link #108

Add Luan's final considerations PDF link

Add Luan's final considerations PDF link #108

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

Check failure on line 39 in .github/workflows/deploy-emprestimos-api.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-emprestimos-api.yml

Invalid workflow file

You have an error in your yaml syntax on line 39
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