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:
|
2021-05-12 05:38:43 +00:00
|
|
|
- uses: actions/checkout@v2.3.4
|
2020-12-20 10:24:11 +00:00
|
|
|
- name: Setup Node.js
|
2021-09-28 04:06:52 +00:00
|
|
|
uses: actions/setup-node@v2.4.1
|
2020-12-20 10:24:11 +00:00
|
|
|
with:
|
2021-07-01 14:01:45 +00:00
|
|
|
cache: 'yarn'
|
2021-01-02 13:51:44 +00:00
|
|
|
- run: yarn install --prefer-offline
|
2021-06-14 12:48:54 +00:00
|
|
|
- run: yarn build && sed -i 's/fonts.gstatic.com/fonts.kavin.rocks/g' dist/css/*.css
|
2021-07-15 04:05:42 +00:00
|
|
|
- uses: aquiladev/ipfs-action@v0.1.6
|
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 }}
|