Skip to content

lsp: Fix ast error line index bug (#736) #20

lsp: Fix ast error line index bug (#736)

lsp: Fix ast error line index bug (#736) #20

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:
jobs:
update-docs:
name: Update Docs
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v4
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 }}