Remove duplicated header content in landing page #103
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| push: | |
| branches: [main] | |
| env: | |
| NODE_VERSION: "16.x" | |
| jobs: | |
| build: | |
| name: Build and Deploy | |
| runs-on: ubuntu-latest | |
| environment: production | |
| steps: | |
| - name: ⬇️ Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: 🤖 Use Node.js ${{ env.NODE_VERSION }} | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - name: 📥 Download deps | |
| uses: bahmutov/npm-install@v1 | |
| - name: 🏗 npm build | |
| run: npm run build | |
| - name: 🚀 Deploy to gh-pages | |
| uses: JamesIves/github-pages-deploy-action@4.1.3 | |
| with: | |
| branch: gh-pages | |
| folder: _site |