name: Deploy to GitHub Pages on: workflow_dispatch: push: branches: - main jobs: build-and-deploy: concurrency: ci-${{ github.ref }} runs-on: ubuntu-latest steps: - name: Checkout 🛎️ uses: actions/checkout@v3 - name: Install and Build 🔧 uses: actions/setup-node@v3 with: node-version: 16 - run: npm ci - run: npm run build - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.2.5 with: branch: gh-pages folder: dist