Build and publish to IPFS.

This commit is contained in:
FireMasterK 2021-02-06 22:45:08 +05:30
parent 5e6ab2a13b
commit 88db5b2139
No known key found for this signature in database
GPG Key ID: 8DFF5DD33E93DB58
1 changed files with 28 additions and 0 deletions

28
.github/actions/build.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Build and Deploy
on:
push:
paths-ignore:
- "**.md"
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
extended: true
- run: hugo --minify
- uses: aquiladev/ipfs-action@v0.1.5
id: ipfs-add
with:
path: ./public
service: infura
- name: Update DNSLink
run: npx dnslink-cloudflare -d kavin.rocks -l /ipfs/${{ steps.ipfs-add.outputs.hash }} -r _dnslink.piped-docs
env:
CF_API_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}