Revert "DuckDB with backup on GCS (#6006)" #811
Workflow file for this run
This file contains 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: Build and Test docs | |
on: | |
push: | |
tags: | |
- "*" | |
paths: | |
- ".github/workflows/docs-check.yml" | |
- "docs/**" | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- ".github/workflows/docs-check.yml" | |
- "docs/**" | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: 23baf08e-2d3e-44db-8bd4-938e54467a29 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Build docs | |
run: |- | |
npm install -w docs | |
npm run build -w docs | |
# https://typicode.github.io/husky/how-to.html#ci-server-and-docker | |
env: | |
HUSKY: 0 | |
- name: Deploy Docs to Netlify docs.rilldata.com | |
uses: nwtgck/[email protected] | |
if: github.event_name != 'pull_request' | |
with: | |
publish-dir: ./docs/dist | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
deploy-message: "Docs ${{ github.ref_name }} deployed to docs.rilldata.com" | |
production-deploy: true | |
enable-pull-request-comment: false | |
enable-commit-comment: true | |
overwrites-pull-request-comment: true | |
timeout-minutes: 1 | |
- name: Algolia crawler creation and crawl | |
uses: algolia/[email protected] | |
id: algolia_crawler | |
if: github.event_name != 'pull_request' | |
with: | |
crawler-name: rilldata | |
crawler-user-id: ${{ secrets.CRAWLER_USER_ID }} | |
crawler-api-key: ${{ secrets.CRAWLER_API_KEY }} | |
algolia-app-id: ${{ secrets.ALGOLIA_APP_ID }} | |
algolia-api-key: ${{ secrets.ALGOLIA_API_KEY }} | |
site-url: 'https://docs.rilldata.com' |