-
-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (73 loc) · 2.02 KB
/
azure-static-web-apps-delightful-moss-07d95f50f.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Build and Deploy Website
on:
push:
branches:
- main
paths-ignore:
- '.github/**'
- 'api/**'
pull_request:
branches:
- main
paths-ignore:
- '.github/**'
- 'api/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
with:
submodules: true
lfs: false
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: NPM Install Dependencies
run: npm ci
- name: NPM Build Docusaurus Website
run: npm run build
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: website
path: build
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: Azure Static Web Apps
url: ${{ steps.deploy.outputs.static_web_app_url }}
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: website
path: build
- name: Install OIDC Client from Core Package
run: npm install @actions/[email protected] @actions/http-client
- name: Get Id Token
uses: actions/github-script@v6
id: idtoken
with:
script: |
const coredemo = require('@actions/core')
return await coredemo.getIDToken()
result-encoding: string
- name: Deploy to Azure Static Web Apps
id: deploy
uses: azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_DELIGHTFUL_MOSS_07D95F50F }}
action: 'upload'
app_location: 'build'
api_location: './api'
output_location: 'build'
github_id_token: ${{ steps.idtoken.outputs.result }}