Skip to content

Commit f0c6d4d

Browse files
authored
Initial Release of Pinning UI
Provides a Web Interface to Sync Pins between IPFS Pinning Service Providers.
1 parent 095d843 commit f0c6d4d

File tree

8 files changed

+11887
-0
lines changed

8 files changed

+11887
-0
lines changed

.github/workflows/main.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Build and GH-Page Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
with:
16+
persist-credentials: false
17+
18+
- name: Install
19+
run: npm install
20+
21+
- name: Build
22+
run: |
23+
npm run build
24+
25+
- name: Deploy to GH Page
26+
uses: JamesIves/[email protected]
27+
with:
28+
branch: gh-pages
29+
folder: dist
30+
31+
- name: IPFS Publish
32+
id: IPFS
33+
uses: filebase/ipfs-action@filebase-changes-draft
34+
with:
35+
path: 'dist'
36+
service: 'filebase'
37+
verbose: true
38+
pinName: 'ipfs-pin-sync'
39+
filebaseBucket: ${{ secrets.FILEBASE_BUCKET }}
40+
filebaseKey: ${{ secrets.FILEBASE_KEY }}
41+
filebaseSecret: ${{ secrets.FILEBASE_SECRET }}

0 commit comments

Comments
 (0)