Skip to content

Add Various macOS and Windows Firefox Based Browsers and Comodo Dragon for Chrome Windows. Add Network Path for Cookies Windows Chromium #51

Add Various macOS and Windows Firefox Based Browsers and Comodo Dragon for Chrome Windows. Add Network Path for Cookies Windows Chromium

Add Various macOS and Windows Firefox Based Browsers and Comodo Dragon for Chrome Windows. Add Network Path for Cookies Windows Chromium #51

Workflow file for this run

name: github pages
on:
push:
branches:
- master # Set a branch to deploy
pull_request:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
go-version: '^1.23'
- run: go version
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Prepare
run: |
make build compile
cp output/SQLiteHunter.zip ./docs/static/
- name: Build
run: cd docs/ && hugo --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/public
force_orphan: true