Skip to content

fix: allow IPv6 addresses in inbound listen and IP address fields (#386) #130

fix: allow IPv6 addresses in inbound listen and IP address fields (#386)

fix: allow IPv6 addresses in inbound listen and IP address fields (#386) #130

Workflow file for this run

name: Deploy documentation
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
working-directory: docs
run: pnpm install --frozen-lockfile
- name: Build docs
working-directory: docs
run: pnpm docs:build
- name: Verify output
run: ls -R docs/xrayui/.vuepress/dist
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: docs/xrayui/.vuepress/dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}