Upgrade packages #81
Workflow file for this run
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 .NET Core app to Windows WebApp EnrollmentApiBps | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| env: | |
| AZURE_WEBAPP_NAME: EnrollmentApiBps | |
| AZURE_WEBAPP_PACKAGE_PATH: Xamarin/Enrollment/Enrollment.Api/publish | |
| AZURE_WEBAPP_PUBLISH_PROFILE: ${{ secrets.EnrollmentApiBps_b4c9 }} | |
| CONFIGURATION: Release | |
| DOTNET_CORE_VERSION: 8.0.x | |
| WORKING_DIRECTORY: Xamarin/Enrollment/Enrollment.Api | |
| jobs: | |
| build-and-deploy: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: ${{ env.DOTNET_CORE_VERSION }} | |
| - name: Restore | |
| run: dotnet restore "${{ env.WORKING_DIRECTORY }}" | |
| - name: Build | |
| run: dotnet build "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --no-restore | |
| - name: Test | |
| run: dotnet test "${{ env.WORKING_DIRECTORY }}" --no-build | |
| - name: Publish | |
| run: dotnet publish "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --no-build --output "${{ env.AZURE_WEBAPP_PACKAGE_PATH }}" | |
| - name: Deploy to Azure WebApp | |
| uses: azure/webapps-deploy@v2 | |
| with: | |
| app-name: ${{ env.AZURE_WEBAPP_NAME }} | |
| package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} | |
| publish-profile: ${{ env.AZURE_WEBAPP_PUBLISH_PROFILE }} | |
| - name: Publish Artifacts | |
| uses: actions/[email protected] | |
| with: | |
| name: webapp | |
| path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} |