add tutorial on custom domain migration #5057
Workflow file for this run
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 | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-22.04-xl | |
permissions: | |
id-token: write # Needed for auth with Deno Deploy | |
contents: read # Needed to clone the repository | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Set up Deno | |
uses: denoland/setup-deno@v2 | |
with: | |
cache: true | |
- name: "Reference: install" | |
working-directory: "reference_gen" | |
run: deno install | |
- name: "Reference: generate types" | |
working-directory: "reference_gen" | |
run: deno task types | |
- name: "Reference: generate docs" | |
working-directory: "reference_gen" | |
run: deno task doc | |
- name: Build | |
env: | |
ORAMA_PROJECT_ID: ${{ vars.ORAMA_PROJECT_ID }} | |
ORAMA_DATASOURCE_ID: ${{ vars.ORAMA_DATASOURCE_ID }} | |
ORAMA_PRIVATE_API_KEY: ${{ secrets.ORAMA_PRIVATE_API_KEY }} | |
run: deno task build | |
- name: Generate search index (Orama upload disabled) | |
env: | |
ORAMA_PROJECT_ID: ${{ vars.ORAMA_PROJECT_ID }} | |
ORAMA_DATASOURCE_ID: ${{ vars.ORAMA_DATASOURCE_ID }} | |
ORAMA_PRIVATE_API_KEY: ${{ secrets.ORAMA_PRIVATE_API_KEY }} | |
run: | | |
echo "Generating search index..." | |
deno task generate:search | |
echo "Skipping upload of search index to Orama Cloud (temporarily disabled)." | |
# NOTE: Temporarily disabling Orama upload. | |
# To re-enable, uncomment the next line: | |
# deno task search:upload | |
- name: Run server | |
run: deno run --allow-read=. --allow-net --allow-env --lock=deno.lock server.ts & | |
- name: Link checker | |
env: | |
DOCS_ROOT: "http://localhost:8000" | |
run: deno run --no-lock --allow-net --allow-env .github/workflows/better_link_checker.ts | |
- name: Upload to Deno Deploy | |
uses: denoland/deployctl@v1 | |
with: | |
project: "deno-docs" | |
entrypoint: "server.ts" | |
root: "." |