mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-22 21:47:25 +00:00
Build and deploy to IPFS.
This commit is contained in:
parent
ce480db615
commit
bd25e3f091
39
.github/workflows/build.yml
vendored
Normal file
39
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
name: Build and Deploy
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- "**.md"
|
||||||
|
branches:
|
||||||
|
- dev-indep
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Setup Node.js
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
- name: Cache Node.js modules
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: ~/.npm
|
||||||
|
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.OS }}-node-
|
||||||
|
- run: npm install
|
||||||
|
- run: npm run build
|
||||||
|
- uses: aquiladev/ipfs-action@v1
|
||||||
|
id: ipfs-add
|
||||||
|
with:
|
||||||
|
path: ./dist
|
||||||
|
service: infura
|
||||||
|
- name: Update DNSLink
|
||||||
|
env:
|
||||||
|
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
|
||||||
|
RECORD_DOMAIN: "kavin.rocks"
|
||||||
|
RECORD_NAME: "_dnslink.piped-ipfs"
|
||||||
|
CLOUDFLARE_TOKEN_ZONE_ID: ${{ secrets.CLOUDFLARE_TOKEN_ZONE_ID }}
|
||||||
|
uses: textileio/cloudflare-update-dnslink@master
|
||||||
|
with:
|
||||||
|
cid: ${{ steps.ipfs-add.outputs.hash }}
|
Loading…
Reference in New Issue
Block a user