2020-12-20 10:24:11 +00:00
|
|
|
name: Build and Deploy
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
branches:
|
2020-12-20 10:25:07 +00:00
|
|
|
- master
|
2020-12-20 10:24:11 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v1
|
2021-01-02 13:51:44 +00:00
|
|
|
- name: Get yarn cache directory path
|
|
|
|
id: yarn-cache-dir-path
|
|
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
2020-12-20 10:24:11 +00:00
|
|
|
- name: Cache Node.js modules
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
2021-01-02 13:51:44 +00:00
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
|
key: ${{ runner.OS }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
2020-12-20 10:24:11 +00:00
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-node-
|
2021-01-02 13:51:44 +00:00
|
|
|
- run: yarn install --prefer-offline
|
|
|
|
- run: yarn build
|
2020-12-20 10:26:47 +00:00
|
|
|
- uses: aquiladev/ipfs-action@v0.1.5
|
2020-12-20 10:24:11 +00:00
|
|
|
id: ipfs-add
|
|
|
|
with:
|
|
|
|
path: ./dist
|
|
|
|
service: infura
|
|
|
|
- name: Update DNSLink
|
2020-12-20 11:10:25 +00:00
|
|
|
run: npx dnslink-cloudflare -d kavin.rocks -l /ipfs/${{ steps.ipfs-add.outputs.hash }} -r _dnslink.piped-ipfs
|
2020-12-20 10:24:11 +00:00
|
|
|
env:
|
2020-12-20 11:10:25 +00:00
|
|
|
CF_API_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
|