Skip to content

Fix memory leak in fts_flatcurve_xapian_query_iter_next() #65

Fix memory leak in fts_flatcurve_xapian_query_iter_next()

Fix memory leak in fts_flatcurve_xapian_query_iter_next() #65

Workflow file for this run

name: Test Building (and Deploy Documentation to GitHub Pages)
on:
workflow_dispatch:
push:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node (Bun)
uses: oven-sh/setup-bun@v1
- name: Setup Pages
if: ${{ github.repository == 'slusarz/dovecot-fts-flatcurve' && github.ref == 'refs/heads/master' }}
uses: actions/configure-pages@v3
- name: Install Dependencies
run: bun install
- name: Build with VitePress
run: |
bun run docs:build
touch docs/.vitepress/dist/.nojekyll
- name: Upload Artifact
if: ${{ github.repository == 'slusarz/dovecot-fts-flatcurve' && github.ref == 'refs/heads/master' }}
uses: actions/upload-pages-artifact@v2
with:
path: docs/.vitepress/dist
deploy:
if: ${{ github.repository == 'slusarz/dovecot-fts-flatcurve' && github.ref == 'refs/heads/master' }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2