Skip to content

Commit f00e0e1

Browse files
authoredSep 14, 2021
use a github action to deploy docs, instead of commiting files (#361)
1 parent c594d2c commit f00e0e1

File tree

9 files changed

+52
-2942
lines changed

9 files changed

+52
-2942
lines changed
 

‎.gitattributes

-1
This file was deleted.

‎.github/workflows/check.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,14 @@ jobs:
1616

1717
- name: Setup node
1818
uses: actions/setup-node@v2
19+
with:
20+
node-version: '16'
1921

2022
- name: Install dependencies
2123
run: npm ci
2224

2325
- name: Build
24-
run: npm run build && npm run build-spec
25-
26-
- name: Enforce docs build
27-
run: if [ ! -z "$(git status --porcelain)" ]; then echo "repo is dirty; you probably need to 'npm run build-spec' and commit the result"; exit 1; fi
26+
run: npm run build
2827

2928
- name: Test
3029
run: npm test

‎.github/workflows/update-docs.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: 'update docs'
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
docs:
10+
name: 'deploy github pages'
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
16+
- name: Setup node
17+
uses: actions/setup-node@v2
18+
with:
19+
node-version: '16'
20+
21+
- name: Install dependencies
22+
run: npm ci
23+
24+
- name: Build
25+
run: npm run build && npm run build-spec
26+
27+
- name: Deploy docs
28+
run: ./scripts/auto-deploy.sh
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ test/baselines/generated-local
55
package
66
ecmarkup-*.tgz
77
.vscode/
8+
docs/

‎docs/ecmarkup.js

-1,138
This file was deleted.

‎docs/elements.css

-1,177
This file was deleted.

‎docs/index.html

-621
This file was deleted.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"build": "tsc -p src -sourceMap",
99
"build-release": "tsc -p src",
10-
"build-spec": "node bin/ecmarkup.js spec/index.html docs/index.html --no-ecma-262-biblio --css-out docs/elements.css --js-out docs/ecmarkup.js",
10+
"build-spec": "mkdir -p docs && node bin/ecmarkup.js spec/index.html docs/index.html --no-ecma-262-biblio --css-out docs/elements.css --js-out docs/ecmarkup.js",
1111
"prepack": "safe-publish-latest && npm run build-release",
1212
"test": "mocha",
1313
"test-baselines": "mocha test/baselines.js",

‎scripts/auto-deploy.sh

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/bash
2+
3+
set -euxo pipefail
4+
5+
declare -r GH_USER_EMAIL="bot@tc39"
6+
declare -r GH_USER_NAME="Bot"
7+
declare -r COMMIT_MESSAGE="Update gh-pages"
8+
9+
cd "$(dirname "$BASH_SOURCE")"/../docs
10+
11+
git config --global user.email "${GH_USER_EMAIL}"
12+
git config --global user.name "${GH_USER_NAME}"
13+
git config --global init.defaultBranch gh-pages
14+
git init
15+
git add -A
16+
git commit --message "${COMMIT_MESSAGE}"
17+
git push --force "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" gh-pages

0 commit comments

Comments
 (0)
Please sign in to comment.