-
-
Notifications
You must be signed in to change notification settings - Fork 114
42 lines (32 loc) · 1.28 KB
/
deploy_binarykits-zpl-viewer.yml
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
# Docs for the Azure Web Apps Deploy action: https://go.microsoft.com/fwlink/?linkid=2134798
# More GitHub Actions for Azure: https://go.microsoft.com/fwlink/?linkid=2135048
name: Azure App Service - BinaryKits-Zpl-Viewer(Production), Build and deploy DotnetCore app
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: windows-latest
if: github.repository_owner == 'BinaryKits'
steps:
# checkout the repo
- name: 'Checkout Github Action'
uses: actions/checkout@master
- name: Set up .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Build with dotnet
working-directory: ./src/BinaryKits.Zpl.Viewer.WebApi
run: dotnet build --configuration Release
- name: dotnet publish
working-directory: ./src/BinaryKits.Zpl.Viewer.WebApi
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
- name: Run Azure webapp deploy action using publish profile credentials
uses: azure/webapps-deploy@v2
with:
app-name: BinaryKits-Zpl-Viewer
slot-name: Production
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_8E401BBFE31840EAAC5260CBDD5A2341 }}
package: ${{env.DOTNET_ROOT}}/myapp