Skip to content

fix: treat unknown/timed-out hosts as blocked instead of unknown #133

fix: treat unknown/timed-out hosts as blocked instead of unknown

fix: treat unknown/timed-out hosts as blocked instead of unknown #133

Workflow file for this run

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: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Clean install dependencies
run: npm ci
- name: Lint
run: npm run lint
- 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@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist