2020-12-20 15:54:11 +05:30
|
|
|
name: Build and Deploy
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
branches:
|
2020-12-20 15:55:07 +05:30
|
|
|
- master
|
2020-12-20 15:54:11 +05:30
|
|
|
|
|
|
|
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
|
2020-12-20 15:56:47 +05:30
|
|
|
- uses: aquiladev/ipfs-action@v0.1.5
|
2020-12-20 15:54:11 +05:30
|
|
|
id: ipfs-add
|
|
|
|
with:
|
|
|
|
path: ./dist
|
|
|
|
service: infura
|
|
|
|
- name: Update DNSLink
|
2020-12-20 16:40:25 +05:30
|
|
|
run: npx dnslink-cloudflare -d kavin.rocks -l /ipfs/${{ steps.ipfs-add.outputs.hash }} -r _dnslink.piped-ipfs
|
2020-12-20 15:54:11 +05:30
|
|
|
env:
|
2020-12-20 16:40:25 +05:30
|
|
|
CF_API_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
|