From df38ec470d2bdfc61b3fd9e79ca2912be6066929 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 13 Jul 2022 11:11:51 +0530 Subject: [PATCH] Remove obsolete CI/CD features --- .github/dependabot.yml | 12 ------------ .github/workflows/build.yml | 29 ----------------------------- 2 files changed, 41 deletions(-) delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/build.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 9f983e2..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,12 +0,0 @@ -version: 2 -updates: - # Maintain dependencies for npm - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "daily" - # Maintain dependencies for GitHub Actions - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 4a84334..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Build and Deploy - -on: - push: - paths-ignore: - - "**.md" - branches: - - master - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2.3.4 - - name: Setup Node.js - uses: actions/setup-node@v2.2.0 - with: - cache: 'yarn' - - run: yarn install --prefer-offline - - run: yarn build && sed -i 's/fonts.gstatic.com/fonts.kavin.rocks/g' dist/css/*.css - - uses: aquiladev/ipfs-action@v0.1.6 - 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 - env: - CF_API_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}