Remove docs.firezone.dev CNAME (#1418)

This corresponds to step (1) of #1417
This commit is contained in:
Jamil
2023-02-09 15:19:19 -08:00
committed by GitHub
parent 0303ea2811
commit 69335153ce
97 changed files with 68 additions and 68 deletions

View File

@@ -21,7 +21,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-package-test:
# Doesn't really need, but don't run this stage when iterating over docs
# Doesn't really need, but don't run this stage when iterating over website
needs: draft-release
env:
TELEMETRY_ENABLED: 'false'

View File

@@ -1,11 +1,11 @@
name: Publish Docs
name: Publish Website
on:
workflow_dispatch:
release:
types: [published]
jobs:
publish-docs:
publish-website:
name: Build Docusaurus 🐲
runs-on: ubuntu-latest
steps:
@@ -16,17 +16,17 @@ jobs:
with:
node-version: 16
cache: 'yarn'
cache-dependency-path: docs/yarn.lock
cache-dependency-path: www/yarn.lock
# XXX: Add API docs generation here
- run: |
cd docs/
cd www/
yarn install --frozen-lockfile
yarn build
- name: Publish Latest Docs
- name: Publish Latest Website
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
branch: gh-pages
folder: docs/build
folder: www/build
target-folder: .
clean: true
clean-exclude: |

View File

@@ -19,7 +19,7 @@ jobs:
cache: 'yarn'
cache-dependency-path: |
apps/fz_http/assets/package-lock.json
docs/yarn.lock
www/yarn.lock
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
@@ -83,7 +83,7 @@ jobs:
run: mix dialyzer --plt
- name: Install node modules
run: |
cd docs/
cd www/
yarn install --frozen-lockfile
- name: Run pre-commit
run: |