Skip to content

Bump version to 0.14.1 #58

Bump version to 0.14.1

Bump version to 0.14.1 #58

Workflow file for this run

name: Docs Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+' # Must match semantic version tags like 'v1.2.3'
workflow_dispatch: # Allows manual triggering of the workflow
permissions:
contents: read
jobs:
build:
name: Build Docusaurus
runs-on:
group: databrickslabs-protected-runner-group
labels: linux-ubuntu-latest
environment:
name: release
deployment: false
permissions:
# JFrog OIDC authentication.
id-token: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
sparse-checkout: |
.github/actions
docs
sparse-checkout-cone-mode: 'true'
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 26.1.0
cache: yarn
cache-dependency-path: docs/lakebridge/yarn.lock
- name: Setup for JFrog
uses: ./.github/actions/jfrog-auth
- name: Configure documentation environment
run: make docs-dev
- name: Build website
run: make docs-build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
with:
path: docs/lakebridge/build # The directory to upload as an artifact
deploy:
name: Deploy to GitHub Pages
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on:
group: databrickslabs-protected-runner-group
labels: linux-ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5