Skip to content

Commit aa4c6b3

Browse files
authored
Initial commit
0 parents  commit aa4c6b3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+4782
-0
lines changed

.github/workflows/gh-pages.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: github pages
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [main]
7+
paths-ignore:
8+
- "README.adoc"
9+
- ".gitignore"
10+
11+
permissions:
12+
contents: read
13+
pages: write
14+
id-token: write
15+
16+
concurrency:
17+
group: gh-pages
18+
cancel-in-progress: false
19+
20+
jobs:
21+
build:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: checkout
25+
uses: actions/checkout@v4
26+
- name: configure pages
27+
uses: actions/configure-pages@v5
28+
- name: setup node
29+
uses: actions/setup-node@v4
30+
with:
31+
node-version: 20.13.1
32+
- name: install antora
33+
run: npm install --global @antora/[email protected] @antora/[email protected]
34+
- name: antora generate
35+
run: antora generate default-site.yml --stacktrace
36+
- name: upload pages artifact
37+
uses: actions/upload-pages-artifact@v3
38+
with:
39+
path: www
40+
deploy:
41+
needs: build
42+
environment:
43+
name: github-pages
44+
url: ${{ steps.deployment.outputs.page_url }}
45+
runs-on: ubuntu-latest
46+
steps:
47+
- name: deploy github pages
48+
id: deployment
49+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Ignore macOS system files
2+
.DS_Store
3+
4+
# Ignore node_modules directory
5+
node_modules/
6+
7+
# Ignore build output
8+
www/
9+
.cache/
10+
11+
# Ignore IDE and editor files
12+
.vscode/
13+
.idea/
14+
15+
# Ignore logs and temporary files
16+
*.log
17+
*.tmp
18+
19+
# Ignore environment-specific files
20+
.env
21+
.env.local
22+
.env.*.local
23+
24+
# Ignore sensitive or private information
25+
secrets.json
26+
27+
# Ignore compiled binaries or executables
28+
*.exe
29+
*.dll
30+
*.so
31+
*.dylib
32+
*.core
33+
34+
# Ignore package-lock.json for npm
35+
package-lock.json
36+
37+
# Ignore yarn.lock for Yarn
38+
yarn.lock

0 commit comments

Comments
 (0)