diff --git a/.github/workflows/jekyll-gh-pages.yml. b/.github/workflows/jekyll-gh-pages.yml. deleted file mode 100644 index 7321ae6..0000000 --- a/.github/workflows/jekyll-gh-pages.yml. +++ /dev/null @@ -1,54 +0,0 @@ -name: Build and Deploy - -on: - push: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout Repository - uses: actions/checkout@v2 - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: 14 - - - name: Install Dependencies - run: npm install - - - name: Build with Vite - run: npm run build - - deploy: - runs-on: ubuntu-latest - - needs: build - - steps: - - name: Checkout Repository - uses: actions/checkout@v2 - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: 14 - - - name: Install Dependencies - run: npm install - - - name: Deploy to GitHub Pages - run: | - # Replace 'gh-pages' with your GitHub Pages branch - git checkout -b gh-pages - git add -f dist - git commit -m "Deploy Vite build with Tailwind CSS" - git push origin gh-pages:gh-pages - env: - NODE_ENV: production - -# Additional configurations if deploying to a different hosting service