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