Skip to content

Commit f5699f6

Browse files
committed
GHA
1 parent d0ca033 commit f5699f6

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

.github/workflows/documentation.yaml

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -56,40 +56,37 @@ jobs:
5656
with:
5757
repository: fractal-analytics-platform/fractal-web
5858
ref: tasks-list-module # FIXME
59-
path: fractal-web
60-
sparse-checkout: |
61-
components
62-
tasks-list
59+
# sparse-checkout: | # FIXME
60+
# components
61+
# tasks-list
6362

6463
- uses: actions/setup-node@v4
6564
with:
6665
node-version: 20
6766
cache: npm
6867

69-
- run: pwd
70-
71-
- run: ls -lh fractal-web
68+
- run: ls -lh # FIXME
7269

7370
- name: Install components dependencies
7471
run: |
75-
cd fractal-web/components
72+
cd components
7673
npm install
7774
7875
- name: Install tasks-list dependencies
7976
run: |
80-
cd fractal-web/tasks-list
77+
cd tasks-list
8178
npm install
8279
83-
- name: Move tasks.json file to fractal-web/tasks-list/src
84-
run: mv tasks/data_retrieval/tasks_data.json fractal-web/tasks-list/src/tasks.json
80+
- name: Move tasks.json file to tasks-list/src
81+
run: mv tasks/data_retrieval/tasks_data.json tasks-list/src/tasks.json
8582

8683
- name: Build tasks-list page
8784
run: |
88-
cd fractal-web/tasks-list
85+
cd tasks-list
8986
npm run build
9087
9188
- name: Move tasks-list built files in docs site
92-
run: mv fractal-web/tasks-list/build/ site/fractal-tasks
89+
run: mv tasks-list/build/ site/fractal-tasks
9390

9491
- name: Deploy docs
9592
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}

0 commit comments

Comments
 (0)