Skip to content

Commit

Permalink
Merge pull request #8 from SteveDunn/net6
Browse files Browse the repository at this point in the history
Workflow to publish to Azure
  • Loading branch information
SteveDunn authored Dec 12, 2021
2 parents 19691ee + 426ccd8 commit f45e382
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/pacmanblazor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build and deploy .NET Core app to Windows WebApp pacmanblazor
on:
push:
branches:
- master
env:
AZURE_WEBAPP_NAME: pacmanblazor
AZURE_WEBAPP_PACKAGE_PATH: src\PacMan/publish
AZURE_WEBAPP_PUBLISH_PROFILE: ${{ secrets.pacmanblazor_9904 }}
CONFIGURATION: Release
DOTNET_CORE_VERSION: 6.0.x
WORKING_DIRECTORY: src\PacMan
jobs:
build-and-deploy:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- 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 }}

0 comments on commit f45e382

Please sign in to comment.