Skip to content

feat(lsp): add initialization options about codelenses (#1176) #31

feat(lsp): add initialization options about codelenses (#1176)

feat(lsp): add initialization options about codelenses (#1176) #31

Workflow file for this run

# this workflow is used to update the Regal content at docs.styra.com
# when it changes in this repo.
name: Update Docs
on:
push:
tags:
- v[0-9].**
workflow_dispatch:
permissions: read-all
jobs:
update-docs:
name: Update Docs
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
fetch-depth: 0
- name: Save version
run: |
mkdir -p versions
echo "${{ github.sha }}" > versions/regal
- name: Update docs
uses: leigholiver/commit-with-deploy-key@64d2c8705aa10aa475e971b877a7fe6ada69a1a2
with:
source: versions
destination_folder: imported/versions
destination_repo: StyraInc/docs
deploy_key: ${{ secrets.STYRA_DOCS_DEPLOY_KEY }}