From cb2b3dd97fc4a01e1cc314dcbc7f5b880ea4e8ac Mon Sep 17 00:00:00 2001 From: Abhiraj Roy <157954129+iconized@users.noreply.github.com> Date: Fri, 7 Jun 2024 05:43:49 +0530 Subject: [PATCH] :bug: fix(remove): static deployment $2 Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com> --- .github/workflows/cd.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/cd.yml diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml deleted file mode 100644 index 8ebf197f..00000000 --- a/.github/workflows/cd.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: cd - -on: [push, pull_request] - -jobs: - cd: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest] - node: [14] - - steps: - - name: Checkout - uses: actions/checkout@master - - - name: Setup node env - uses: actions/setup-node@v2.1.2 - - with: - node-version: ${{ matrix.node }} - - - name: Install dependencies - run: yarn - - - name: Generate - run: yarn generate - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./dist - - \ No newline at end of file