Skip to content

Commit

Permalink
feat: doctor, upgrade with version, static materializer and website u…
Browse files Browse the repository at this point in the history
…pdates (#263)

* feat: update website

* feat: add static mat

* feat: add doctor

* feat: clean code

* fix: no query body

* fix

* prepare release 0.1.4

* fix
  • Loading branch information
zifeo authored Apr 11, 2023
1 parent 92656cf commit e09addb
Show file tree
Hide file tree
Showing 82 changed files with 1,397 additions and 372 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/publish-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ env:
PNPM_VERSION: "8.1.0"
NODE_VERSION: "19.8.1"
PYTHON_VERSION: "3.8"
TG_URL: https://demo.metatype.dev

jobs:
changes:
Expand Down Expand Up @@ -48,8 +47,15 @@ jobs:
with:
path: .venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
- name: Install Infisical
run: |
curl -1sLf 'https://dl.cloudsmith.io/public/infisical/infisical-cli/setup.deb.sh' | sudo -E bash
sudo apt-get update
sudo apt-get install -y infisical
- name: Install and build
working-directory: website
env:
TG_URL: https://demo.metatype.dev
run: |
pnpm install --frozen-lockfile
pnpm build
Expand All @@ -58,7 +64,7 @@ jobs:
python3 -m venv .venv
source .venv/bin/activate
pip3 install ./typegraph
# cargo run --locked --package meta-cli -- -C website deploy -g {{ env.TG_URL }} -u admin -p {{ secrets.DOCS_TG_ADMIN_PASSWORD }}}
cargo run --locked --package meta-cli -- -C website deploy -p {{ secrets.DOCS_TG_ADMIN_PASSWORD }}}
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
env:
PYTHON_VERSION: "3.8"
POETRY_VERSION: "1.4.1"
DENO_VERSION: "1.32.1"
DENO_VERSION: "1.32.3"

jobs:
check-bump:
Expand Down Expand Up @@ -46,9 +46,9 @@ jobs:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
suffix: ""
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
suffix: ""
#- os: ubuntu-latest
# target: x86_64-unknown-linux-musl
# suffix: ""
- os: windows-latest
target: x86_64-pc-windows-msvc
suffix: ".exe"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ on:
types:
- opened
- synchronize
- ready_for_review

env:
PYTHON_VERSION: "3.8"
PROTOC_VERSION: "3.x"
POETRY_VERSION: "1.4.1"
DENO_BINDGEN_URL: https://github.com/metatypedev/deno_bindgen/raw/main/cli.ts
DENO_VERSION: "1.32.1"
DENO_VERSION: "1.32.3"
PNPM_VERSION: "8.1.0"
NODE_VERSION: "19.8.1"

Expand Down
Loading

0 comments on commit e09addb

Please sign in to comment.