Skip to content

Bump Microsoft.AspNetCore.Components from 6.0.8 to 6.0.25 in /src/Web… #220

Bump Microsoft.AspNetCore.Components from 6.0.8 to 6.0.25 in /src/Web…

Bump Microsoft.AspNetCore.Components from 6.0.8 to 6.0.25 in /src/Web… #220

name: Deploy Pwned Web API
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
workflow_dispatch:
inputs:
reason:
description: 'The reason for running the workflow'
required: true
default: 'Manual "Deploy Web API" run'
env:
AZURE_WEBAPP_NAME: learningblazor-pwnedapi
AZURE_WEBAPP_PACKAGE_PATH: src/Web.PwnedApi/publish
AZURE_WEBAPP_PUBLISH_PROFILE: ${{ secrets.learningblazor_pwnedapi_d790 }}
CONFIGURATION: Release
DOTNET_CORE_VERSION: 6.0.x
WORKING_DIRECTORY: src/Web.PwnedApi
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: 'Print manual run reason'
if: ${{ github.event_name == 'workflow_dispatch' }}
run: |
echo 'Reason: ${{ github.event.inputs.reason }}'
- 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/upload-artifact@v1.0.0
with:
name: webapp
path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}