Skip to content
This repository was archived by the owner on Nov 1, 2022. It is now read-only.

Commit 4c76977

Browse files
committed
move cluster api to separate package
1 parent 64d9d9b commit 4c76977

File tree

1,203 files changed

+81396
-212
lines changed

Some content is hidden

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

1,203 files changed

+81396
-212
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
7+
[*.{js,json,yml}]
8+
charset = utf-8
9+
indent_style = space
10+
indent_size = 2

.github/workflows/deploy.yml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,32 @@ jobs:
2020
- name: Checkout repo
2121
uses: actions/checkout@v2
2222

23+
- name: Install yarn
24+
run: npm install -g corepack
25+
2326
- name: Install dependencies
24-
run: npm install
27+
run: yarn install
2528

2629
- name: Generate build artifact
27-
run: CI=false npm run build
30+
run: CI=false yarn run build
2831

2932
- name: Sync to IPFS
30-
id: upload
33+
id: upload-client
34+
uses: nymmrx/ipfs-deploy@master
35+
with:
36+
path: "./client/build"
37+
pin-name: My Awesome Project
38+
pinata-key: ${{ secrets.PINATA_KEY }}
39+
pinata-secret: ${{ secrets.PINATA_SECRET }}
40+
#cloudflare-zone-id: ${{ secrets.CLOUDFLARE_ZONE }}
41+
#cloudflare-secret: ${{ secrets.CLOUDFLARE_SECRET }}
42+
#record-domain: example.com
43+
#record-name: _dnslink.app
44+
- name: Sync to IPFS
45+
id: upload-lib
3146
uses: nymmrx/ipfs-deploy@master
3247
with:
33-
path: "./build"
48+
path: "./ipfs-cluster-api/build"
3449
pin-name: My Awesome Project
3550
pinata-key: ${{ secrets.PINATA_KEY }}
3651
pinata-secret: ${{ secrets.PINATA_SECRET }}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
/coverage
1010

1111
# production
12-
/build
12+
**/build
13+
**/dist
1314

1415
# misc
1516
.DS_Store

.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

Lines changed: 28 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@ nodeLinker: pnp
33
plugins:
44
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
55
spec: "@yarnpkg/plugin-interactive-tools"
6+
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
7+
spec: "@yarnpkg/plugin-workspace-tools"
68

79
yarnPath: .yarn/releases/yarn-3.2.4.cjs
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)