fix(backends): make string concat-with-null behavior consistent across backends #971
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: Docs Preview | |
on: | |
pull_request_target: | |
types: | |
- labeled | |
concurrency: | |
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
docs_preview: | |
runs-on: ubuntu-latest | |
if: github.event.label.name == 'docs-preview' | |
steps: | |
- uses: tibdex/github-app-token@v2 | |
id: generate_token | |
with: | |
app_id: ${{ secrets.DOCS_BOT_APP_ID }} | |
private_key: ${{ secrets.DOCS_BOT_APP_PRIVATE_KEY }} | |
- name: reset label | |
uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
labels: docs-preview | |
github_token: ${{ steps.generate_token.outputs.token }} | |
- name: install nix | |
uses: cachix/install-nix-action@v25 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ steps.generate_token.outputs.token }} | |
- name: setup cachix | |
uses: cachix/cachix-action@v14 | |
with: | |
name: ibis | |
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
extraPullNames: nix-community,poetry2nix | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: build docs | |
run: nix develop --ignore-environment --keep HOME -c just docs-build-all | |
- name: install netlify cli | |
run: npm install -g netlify-cli | |
- name: generate url alias | |
id: get_alias | |
run: | | |
echo "id=pr-${{ github.event.pull_request.number }}-${{ github.event.pull_request.head.sha }}" >> "$GITHUB_OUTPUT" | |
- name: build and push quarto docs to preview url | |
run: netlify deploy --dir=docs/_output --alias="${{ steps.get_alias.outputs.id }}" | |
env: | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
- name: create preview link comment | |
if: success() | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
token: ${{ steps.generate_token.outputs.token }} | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
Docs preview: https://${{ steps.get_alias.outputs.id }}--ibis-quarto.netlify.app |