From 4c1e62fd086b83f46c54b2929962129e2288eb9f Mon Sep 17 00:00:00 2001 From: Sophie Date: Wed, 8 May 2024 08:39:22 -0700 Subject: [PATCH] chore: remove unused gh pages action --- .github/workflows/gh-pages.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/gh-pages.yml diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml deleted file mode 100644 index 7520009..0000000 --- a/.github/workflows/gh-pages.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: GitHub Pages - -on: - push: - branches: - - master - workflow_dispatch: - -env: - NODE_VERSION: '16' - -jobs: - deploy: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: npm ci and build - env: - CI: true - run: | - cd app && npm ci && npm run build - cp -r build ../build - cp ../CNAME ../build - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./build