-
Notifications
You must be signed in to change notification settings - Fork 111
63 lines (60 loc) · 2.17 KB
/
azure-static-web-apps-happy-dune-071cbee03.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Azure Static Web Apps CI/CD
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- main
jobs:
build_job:
runs-on: windows-latest
name: Build Job
steps:
- name: checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Install DocFX
run: dotnet tool update -g docfx
env:
CI: true
- name: build Documentation
id: build-documentation
run: |
docfx build --warningsAsErrors
shell: powershell
- name: Zip artifact for deployment
run: Compress-Archive -Path _site/* -DestinationPath .\_site.zip
- name: Publish results
uses: actions/upload-artifact@v3
with:
name: release
path: _site.zip
deploy_job:
if: (github.event_name == 'push' && github.repository == 'SkylineCommunications/dataminer-docs-connectors')
runs-on: ubuntu-latest
needs: build_job
name: Deploy Job
steps:
- uses: actions/download-artifact@v3
with:
name: release
path: .
- name: Unzip artifact for deployment
run: Expand-Archive -Path _site.zip -DestinationPath ./_site
shell: pwsh
- name: Build And Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_HAPPY_DUNE_071CBEE03 }}
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
action: "upload"
###### Repository/Build Configurations - These values can be configured to match your app requirements. ######
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
app_location: "/_site" # App source code path
api_location: "" # Api source code path - optional
output_location: "" # Built app content directory - optional
###### End of Repository/Build Configurations ######