From 90d1f7393ca411752fd8fe8a4cf58424b0bb3930 Mon Sep 17 00:00:00 2001 From: Jeffrey Rooks Date: Tue, 16 Jan 2024 00:10:57 -0500 Subject: [PATCH] try using different name --- .github/workflows/main.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 8e1532c..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Build and Deploy -on: - push: - branches: - - main -permissions: - contents: write -jobs: - build-and-deploy: - concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession. - runs-on: ubuntu-latest - steps: - - name: Checkout 🛎️ - uses: actions/checkout@v3 - - - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. - run: | - npm ci - npm run build - - - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@v4 - with: - folder: dist # The folder the action should deploy.