Build and deploy to IPFS.

This commit is contained in:
FireMasterK 2020-12-20 15:54:11 +05:30
parent ce480db615
commit bd25e3f091
1 changed files with 39 additions and 0 deletions

39
.github/workflows/build.yml vendored Normal file
View 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 }}