We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e1b07d + 54efe6d commit 8ebff14Copy full SHA for 8ebff14
.github/workflows/deploy-docs.yml
@@ -25,12 +25,12 @@ jobs:
25
cache: 'yarn'
26
27
- name: Install main dependencies
28
- run: yarn install --frozen-lockfile
+ run: yarn install
29
30
- name: Install Angular dependencies
31
run: |
32
cd angular
33
- yarn install --frozen-lockfile
+ yarn install
34
35
- name: Build Angular library
36
run: yarn build:ng
.github/workflows/sync-docs.yml
@@ -79,7 +79,7 @@ jobs:
79
git archive master angular/doc | tar -xf -
80
81
# Add changes
82
- git add angular/doc
+ git add -f angular/doc
83
84
- name: Commit and push changes
85
if: steps.check-docs.outputs.main_docs == 'true' || steps.check-docs.outputs.angular_docs == 'true'
0 commit comments