Skip to content

Commit cace9e4

Browse files
chore(gh-pages): reallocate docs page to eesast docs
1 parent 3b8f823 commit cace9e4

Some content is hidden

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

43 files changed

+33
-23962
lines changed

.github/workflows/build.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: build
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches: [dev, main, master]
5+
pull_request:
6+
branches: [dev, main, master]
37
jobs:
48
dotnet-build-logic:
59
if: true

.github/workflows/format.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: format
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches: [dev, main, master]
5+
pull_request:
6+
branches: [dev, main, master]
37
jobs:
48
clang-format-checking:
59
runs-on: ubuntu-latest

.github/workflows/deploy.yml .github/workflows/gh-pages.yml

+5-23
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: Deploy to GitHub Pages
22

33
on:
44
push:
5+
branches: [dev, main, master]
56
paths:
6-
- '.github/workflows/deploy.yml'
7+
- '.github/workflows/gh-pages.yml'
78
- 'docs/**'
89

910
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
@@ -23,41 +24,22 @@ jobs:
2324
runs-on: ubuntu-latest
2425
defaults:
2526
run:
26-
working-directory: docs
27+
working-directory: gh-pages
2728
environment:
2829
name: github-pages
2930
url: ${{ steps.deployment.outputs.page_url }}
3031
steps:
3132
- uses: actions/checkout@v3
3233

33-
- uses: actions/setup-node@v3
34-
with:
35-
node-version: 18
36-
37-
- name: Get yarn cache
38-
id: yarn-cache
39-
run: echo "YARN_CACHE_DIR=$(yarn cache dir)" >> "${GITHUB_OUTPUT}"
40-
41-
- name: Cache dependencies
42-
uses: actions/cache@v3
43-
with:
44-
path: ${{ steps.yarn-cache.outputs.YARN_CACHE_DIR }}
45-
key: ${{ runner.os }}-docs-${{ hashFiles('**/yarn.lock') }}
46-
restore-keys: |
47-
${{ runner.os }}-docs-
48-
49-
- run: yarn install --frozen-lockfile
50-
- run: yarn build
51-
5234
- name: Setup Pages
5335
uses: actions/configure-pages@v5
5436

5537
- name: Upload artifact
5638
uses: actions/upload-pages-artifact@v3
5739
with:
5840
# Upload entire repository
59-
path: './docs/build'
41+
path: '.'
6042

6143
- name: Deploy to GitHub Pages
6244
id: deployment
63-
uses: actions/deploy-pages@v4
45+
uses: actions/deploy-pages@v4

docs/.gitignore

-20
This file was deleted.

0 commit comments

Comments
 (0)