Merge pull request #60 from jmdotdev/add-fluent-entity-configs #34
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 ASP.Net Core app to Azure Web App - eventz-api | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-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: Restore | |
| working-directory: eventz-api | |
| run: dotnet restore | |
| - name: Build with dotnet | |
| working-directory: eventz-api | |
| run: dotnet build --configuration Release --no-restore | |
| - name: dotnet publish | |
| working-directory: eventz-api | |
| run: dotnet publish -c Release -o "${{ env.DOTNET_ROOT }}/myapp" --no-build | |
| - name: Upload artifact for deployment job | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: .net-app | |
| path: ${{ env.DOTNET_ROOT }}/myapp | |
| deploy: | |
| runs-on: windows-latest | |
| needs: build | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| # Checkout source code for EF migrations | |
| - uses: actions/checkout@v4 | |
| - name: Set up .NET Core | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.x' | |
| - name: Download artifact from build job | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: .net-app | |
| path: ./publish | |
| - name: Login to Azure | |
| uses: azure/login@v2 | |
| with: | |
| client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_6DACC4E5B56447598D236C89AC8844E8 }} | |
| tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_FB8777C29A90445191BBFE92862C3FD9 }} | |
| subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_5816123D7C1C4A18B4343C212C51FC7A }} | |
| - name: Install EF Core CLI | |
| run: | | |
| dotnet tool uninstall --global dotnet-ef || echo "No existing version" | |
| dotnet tool install --global dotnet-ef --version 8.* | |
| - name: Run database migrations | |
| env: | |
| CONNECTION_STRING: ${{ secrets.AZURE_SQL_CONNECTION_STRING }} | |
| run: | | |
| dotnet ef database update --project eventz-api/Eventz.Infrastructure/Eventz.Infrastructure.csproj --startup-project eventz-api/Eventz.Api/Eventz.Api.csproj --connection "$env:CONNECTION_STRING" | |
| - name: Deploy to Azure Web App | |
| uses: azure/webapps-deploy@v3 | |
| with: | |
| app-name: 'eventz-api' | |
| slot-name: 'Production' | |
| package: ./publish |