-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (49 loc) · 1.66 KB
/
website-build-and-deploy.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
name: Website – Build and Deploy
on:
push:
branches:
- prime
- dev
paths:
- web/**
- .github/workflows/website-build-and-deploy.yml
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
name: Build and Deployment Job
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v3
- name: Install Build Dependencies
id: installbuilddependencies
run: |
corepack enable
echo Using pnpm $(pnpm --version)
pnpm install
working-directory: web
- name: Test
id: test
run: pnpm test
working-directory: web
- name: Build
id: build
run: pnpm run build-only
working-directory: web
- name: Deploy
id: deploy
uses: Azure/static-web-apps-deploy@v1
with:
production_branch: prime
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_DEPLOY_TOKEN }}
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: web/dist/ # App source code path
skip_app_build: true
api_location: "" # Api source code path - optional
skip_api_build: true
output_location: "" # Built app content directory - optional
###### End of Repository/Build Configurations ######