mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-12-13 22:00:28 +05:30
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
|
name: Build and Deploy
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
paths-ignore:
|
||
|
- "**.md"
|
||
|
branches:
|
||
|
- dev-indep
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Setup Node.js
|
||
|
uses: actions/setup-node@v1
|
||
|
- name: Cache Node.js modules
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: ~/.npm
|
||
|
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.OS }}-node-
|
||
|
- run: npm install
|
||
|
- run: npm run build
|
||
|
- uses: aquiladev/ipfs-action@v1
|
||
|
id: ipfs-add
|
||
|
with:
|
||
|
path: ./dist
|
||
|
service: infura
|
||
|
- name: Update DNSLink
|
||
|
env:
|
||
|
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
|
||
|
RECORD_DOMAIN: "kavin.rocks"
|
||
|
RECORD_NAME: "_dnslink.piped-ipfs"
|
||
|
CLOUDFLARE_TOKEN_ZONE_ID: ${{ secrets.CLOUDFLARE_TOKEN_ZONE_ID }}
|
||
|
uses: textileio/cloudflare-update-dnslink@master
|
||
|
with:
|
||
|
cid: ${{ steps.ipfs-add.outputs.hash }}
|