From ddfb60ee262d64002e598b264e536175302996e5 Mon Sep 17 00:00:00 2001 From: Andrew Jarvis Date: Sat, 17 Feb 2024 01:22:02 -0500 Subject: [PATCH] Remove GH Pages workflow --- .github/workflows/gh-pages-publish.yml | 33 -------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/gh-pages-publish.yml diff --git a/.github/workflows/gh-pages-publish.yml b/.github/workflows/gh-pages-publish.yml deleted file mode 100644 index f3936cf..0000000 --- a/.github/workflows/gh-pages-publish.yml +++ /dev/null @@ -1,33 +0,0 @@ -# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created -# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages - -name: Publish to Github Pages - -on: - push: - branches: - - main - -env: - NODE_VERSION: '14.15.3' - -jobs: - build-and-deploy: - name: Build and Deploy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@v1 - with: - node-version: ${{ env.NODE_VERSION }} - - name: Build app - run: | - npm install - npm run build - - name: 'Deploy to Github Pages' - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./public -