Skip to content

Commit 888729d

Browse files
committed
revert GA
1 parent 207b9f5 commit 888729d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/deploy-site.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,14 @@ jobs:
3838
- name: Install yarn
3939
run: npm install -g yarn
4040
- name: Install dependencies
41-
run: yarn install
41+
working-directory: ./example
42+
run: |
43+
sed -i '/link:/d' package.json
44+
yarn add react-fluid-table
45+
yarn install
4246
- name: Build
43-
run: yarn site:build
47+
working-directory: ./example
48+
run: yarn build
4449
- name: Setup Pages
4550
uses: actions/configure-pages@v3
4651
- name: Upload artifact

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"scripts": {
2828
"build": "rm -rf dist ||: && rollup -c --environment BUILD:production",
2929
"start": "rollup -c -w --environment BUILD:development",
30-
"site:build": "cd example && yarn install && yarn run build"
30+
"site:build": "cd example && yarn install && yarn build"
3131
},
3232
"peerDependencies": {
3333
"react": ">=16.8.0",

0 commit comments

Comments
 (0)