2021-12-28 19:39:02 +00:00
|
|
|
name: Build and Deploy
|
|
|
|
|
|
|
|
on:
|
2023-05-05 01:19:54 +00:00
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
branches:
|
|
|
|
- master
|
2021-12-28 19:39:02 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-05-05 01:19:54 +00:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-04 15:15:56 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-05-05 01:19:54 +00:00
|
|
|
- name: Setup pnpm
|
|
|
|
uses: pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
- name: Setup Node.js
|
2023-10-23 16:26:43 +00:00
|
|
|
uses: actions/setup-node@v4
|
2023-05-05 01:19:54 +00:00
|
|
|
with:
|
|
|
|
cache: "pnpm"
|
|
|
|
- run: pnpm install
|
|
|
|
- run: pnpm build && ./localizefonts.sh && cp dist/index.html dist/ipfs-404.html
|
|
|
|
- uses: aquiladev/ipfs-action@v0.3.1-alpha.2
|
|
|
|
id: ipfs-add
|
|
|
|
with:
|
|
|
|
path: ./dist
|
|
|
|
service: infura
|
|
|
|
infuraProjectId: ${{ secrets.INFURA_PROJECT_ID }}
|
|
|
|
infuraProjectSecret: ${{ secrets.INFURA_PROJECT_SECRET }}
|
|
|
|
- name: Update DNSLink
|
|
|
|
run: npx dnslink-cloudflare -d kavin.rocks -l /ipfs/${{ steps.ipfs-add.outputs.hash }} -r _dnslink.piped-ipfs
|
|
|
|
env:
|
|
|
|
CF_API_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
|