Skip to content

Commit e77b532

Browse files
authored
Fix typo
1 parent b0a704d commit e77b532

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/docs.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,32 @@ on:
88

99
jobs:
1010
publish-docs:
11-
11+
1212
runs-on: ubuntu-latest
13-
13+
1414
steps:
1515
- name: Setup Node.js environment
1616
uses: actions/[email protected]
1717
with:
18-
node-version: >= 12
19-
18+
node-version: ">= 12"
19+
2020
- uses: actions/checkout@v2
21-
21+
2222
- name: Checkout gh-pages
2323
uses: actions/checkout@v2
2424
with:
2525
ref: gh-pages
2626
path: tsdoc
27-
28-
- run: rm -rf tsdoc/*
29-
- run: yarn typedoc --disableOutputCheck
30-
31-
- name: Commit to gh-pages
32-
uses: EndBug/add-and-commit@v4
33-
with:
34-
cwd: './tsdoc'
35-
ref: gh-pages
36-
message: "Update docs via ${GIT_SHA}"
37-
env:
38-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39-
GIT_SHA: ${{ github.sha }}
27+
28+
- run: 'rm -rf tsdoc/*'
29+
- run: yarn typedoc --disableOutputCheck
30+
31+
- name: Commit to gh-pages
32+
uses: EndBug/add-and-commit@v4
33+
with:
34+
cwd: './tsdoc'
35+
ref: gh-pages
36+
message: "Update docs via ${GIT_SHA}"
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
GIT_SHA: ${{ github.sha }}

0 commit comments

Comments
 (0)