Skip to content

Commit

Permalink
Feat/query artifact from metadata api (#72)
Browse files Browse the repository at this point in the history
* chore: update deps

* feat: add graphql helper

* feat: adding discovery

* feat: graphql pagination works

* feat: new command dbterd runx

* chore: refactor and intro run-metadata

* feat: new func parse_metadata

* refactor: __get_operation

* feat: Parsed tables

* fix: parsed tables

* feat: workable

* chore: add docstring

* chore: add Build and Deploy Docs Site (for beta)

* docs: add docs
  • Loading branch information
datnguye authored Feb 3, 2024
1 parent f933248 commit 2ae1867
Show file tree
Hide file tree
Showing 28 changed files with 1,371 additions and 481 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/publish-docs-beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build and Deploy Docs Site (for beta)

on:
workflow_dispatch:
inputs:
version:
description: Document version e.g. 1.1 (beta), 1.2 (beta)
required: true

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive

- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache

- name: Install dependencies
run: pip install mkdocs mkdocs-material mkdocs-minify-plugin mike

- name: Configure Git user
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Publish site
run: |
mike deploy --push --update-aliases ${{ inputs.version }}
Loading

0 comments on commit 2ae1867

Please sign in to comment.