1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2024-12-13 22:00:28 +05:30
Piped/.github/workflows/build.yml

38 lines
1.1 KiB
YAML
Raw Normal View History

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:
- uses: actions/checkout@v2.3.4
2020-12-20 15:54:11 +05:30
- name: Setup Node.js
uses: actions/setup-node@v2.1.5
2021-01-02 19:21:44 +05:30
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
2020-12-20 15:54:11 +05:30
- name: Cache Node.js modules
uses: actions/cache@v2.1.6
2020-12-20 15:54:11 +05:30
with:
2021-01-02 19:21:44 +05:30
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.OS }}-yarn-${{ hashFiles('**/yarn.lock') }}
2020-12-20 15:54:11 +05:30
restore-keys: |
2021-01-02 19:24:52 +05:30
${{ runner.OS }}-yarn-
2021-01-02 19:21:44 +05:30
- run: yarn install --prefer-offline
- run: yarn build --modern && sed -i 's/fonts.gstatic.com/fonts.kavin.rocks/g' dist/css/*.css
2020-12-20 15:56:47 +05:30
- uses: aquiladev/ipfs-action@v0.1.5
2020-12-20 15:54:11 +05:30
id: ipfs-add
with:
path: ./dist
service: infura
- name: Update DNSLink
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:
CF_API_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}