diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..761c43a4 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,39 @@ +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 }}