Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,20 @@ on:

jobs:
test-build:
name: Test Jekyll Build
name: Test Docs Build
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- name: Setup Ruby # uses version from .ruby-version
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install js dependencies
run: bun install --frozen-lockfile
- name: Build the Jekyll Site
- name: Build the Docs Site
env:
JEKYLL_ENV: production
NODE_ENV: production
run: |
# Clear the existing site:
rm -rf _site
# Build the jekyll site:
# Build the docs site:
script/build
13 changes: 3 additions & 10 deletions .github/workflows/update-docs-base-bun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
name: Build docs v${{ needs.params.outputs.versions }}
runs-on: ubuntu-latest
# The docs pull step can retry up to 3x30 minutes on its own, so leave room for
# that plus the jekyll build and htmlproofer.
# that plus the astro build and htmlproofer.
timeout-minutes: 150
env:
GH_TOKEN: ${{ secrets.METABASE_AUTOMATION_USER_TOKEN }}
Expand Down Expand Up @@ -93,12 +93,6 @@ jobs:
- name: Install js dependencies
run: bun install --frozen-lockfile

- name: Setup Ruby # uses version from .ruby-version
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0

- name: Setup Git Authentication
run: |
git config --global user.name "Metabase Docs bot"
Expand Down Expand Up @@ -152,14 +146,13 @@ jobs:
name: sdk-files-debug
path: _docs/v0.57/

- name: Build the Jekyll Site
- name: Build the Docs Site
env:
JEKYLL_ENV: production
NODE_ENV: production
run: |
# Clear the existing site:
rm -rf _site
# Build the jekyll site:
# Build the docs site:
script/build

- name: Run htmlproofer + metabase.com-aware link checks
Expand Down
Binary file removed .jekyll-metadata
Binary file not shown.
1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

11 changes: 0 additions & 11 deletions Gemfile

This file was deleted.

234 changes: 0 additions & 234 deletions Gemfile.lock

This file was deleted.

10 changes: 0 additions & 10 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,6 @@ default_social_image: /images/twitter/default.png
redcarpet:
extensions:
[no_intra_emphasis, fenced_code_blocks, autolink, tables, with_toc_data]
plugins:
- jekyll-redirect-from
whitelist:
- jekyll-redirect-from
- jekyll_include_plugin
- jekyll_dirname_payload_plugin
- jekyll_responsive_table_labels_plugin
- jekyll_version_support_plugin
jekyll_include_plugin:
snippet_prefix: ""
permalink: "/blog/:title"
webrick:
headers:
Expand Down
25 changes: 0 additions & 25 deletions _layouts/default_new.html

This file was deleted.

Loading