Skip to content

v1.0.6

v1.0.6 #18

Workflow file for this run

name: Extract Macros
on:
release:
published:
jobs:
bench:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Extract Macros
run: |
grep -oP '{DEFAULT_SCHEMA, "\K[^"]*|, R"\K[^"]*' ./chsql/src/chsql_extension.cpp | awk 'NR%2{printf "%s ", $0; next} 1' | grep -v ^"times_" > /tmp/macros.md
- name: Summary Report
run: |
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Supported Macros" >> $GITHUB_STEP_SUMMARY
cat /tmp/macros.md >> $GITHUB_STEP_SUMMARY