We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2a8c3d3 + 35e8097 commit aead3fbCopy full SHA for aead3fb
1 file changed
.github/workflows/website-v1-13.yml
@@ -12,7 +12,7 @@ on:
12
13
jobs:
14
build_and_deploy_job:
15
- if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
+ if: github.event.action != 'closed'
16
runs-on: ubuntu-latest
17
name: Build and Deploy Job
18
steps:
@@ -22,6 +22,10 @@ jobs:
22
fetch-depth: 0
23
- name: Setup Docsy
24
run: cd daprdocs && git submodule update --init --recursive && sudo npm install -D --save autoprefixer && sudo npm install -D --save postcss-cli
25
+ - name: Exclude translations (reduce build size for Free tier)
26
+ run: |
27
+ rm -rf daprdocs/content/zh-hans translations/docs-zh
28
+ # SDK docs kept for reference integrity
29
- name: Build And Deploy
30
id: builddeploy
31
uses: Azure/static-web-apps-deploy@v1
0 commit comments