From 2b2b8727d4072b033252d2e9bb3a8b5f767969fe Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Sun, 4 Oct 2020 21:12:05 +0200 Subject: [PATCH] chore: deploy License: MIT Signed-off-by: Henrique Dias --- .github/workflows/deploy.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..7ca4edb --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,25 @@ +name: 'Deploy /ipns/xkcd.hacdias.com' +on: + push: + branches: + - master + schedule: + - cron: '0 0 * * *' + +jobs: + deploy: + name: Deploy + runs-on: ubuntu-latest + steps: + - name: Check out the repo + uses: actions/checkout@v2 + - name: Use Node.js 12.x + uses: actions/setup-node@v1 + with: + node-version: 12.x + - run: npm install + - run: npx xkcd-clone -d output + - run: npx ipfs-deploy output -C -O -u pinata -p ipfs-cluster -d cloudflare + env: + IPFS_DEPLOY_CLOUDFLARE__ZONE: hacdias.com + IPFS_DEPLOY_CLOUDFLARE__RECORD: _dnslink.xkcd.hacdias.com \ No newline at end of file