forked from IEvangelist/signalr-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (47 loc) · 1.5 KB
/
blazing-chat.yml
File metadata and controls
47 lines (47 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Deploy App
on:
push:
branches: [ main ]
paths:
- '**.cs'
- '**.css'
- '**.json'
- '**.razor'
- '**.html'
- '**.yml'
- '**.csproj'
env:
AZURE_WEBAPP_NAME: blazing-chat
AZURE_WEBAPP_PACKAGE_PATH: BlazingChatter\Server/publish
AZURE_WEBAPP_PUBLISH_PROFILE: ${{ secrets.blazing_chat_a434 }}
CONFIGURATION: Release
DOTNET_CORE_VERSION: 7.0.x
WORKING_DIRECTORY: BlazingChatter\Server
jobs:
build-and-deploy:
runs-on: windows-latest
steps:
- uses: actions/checkout@main
- name: Setup .NET Core
uses: actions/setup-dotnet@main
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.2.6
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@main
with:
name: webapp
path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}