fix: restore lint and improve adblock page metadata #122
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: Deploy to gh-pages! | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| gh-pages-deploy: | |
| name: Deploying to gh-pages | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v4 | |
| - name: Clean install dependencies | |
| run: npm ci | |
| - name: Build app | |
| run: npm run build | |
| - name: Purge | |
| run: npm run purge | |
| - name: Create CNAME file | |
| run: echo "adblock.turtlecute.org" > dist/CNAME | |
| - name: Deploy to gh-pages | |
| uses: peaceiris/actions-gh-pages@v3.9.3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./dist |