Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,40 @@ jobs:
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

deploy-docs:
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/docs'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js and pnpm
uses: ./.github/actions/setup-node-pnpm

- name: Build docs
run: pnpm --filter docs build

- name: Deploy docs
env:
FLEEK_TOKEN: ${{ secrets.FLEEK_TOKEN }}
FLEEK_PROJECT_ID: cm1coipco000087g1pcgohgtd
run: pnpm --dir apps/docs deploy:fleek

deploy-registry:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js and pnpm
uses: ./.github/actions/setup-node-pnpm

- name: Build registry
run: pnpm --filter @geist/registry build

- name: Deploy registry
env:
FLEEK_TOKEN: ${{ secrets.FLEEK_TOKEN }}
FLEEK_PROJECT_ID: cm2lvm8yh000030bm17kmomq9
run: pnpm --dir apps/registry deploy:fleek
38 changes: 0 additions & 38 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,41 +74,3 @@ jobs:
FLEEK_TOKEN: ${{ secrets.FLEEK_TOKEN }}
FLEEK_PROJECT_ID: cm2kkeg090000d5n0pbuh5f9u
run: pnpm --dir apps/storybook deploy:fleek

deploy-docs:
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/docs'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js and pnpm
uses: ./.github/actions/setup-node-pnpm

- name: Build docs
run: pnpm --filter docs build

- name: Deploy docs
env:
FLEEK_TOKEN: ${{ secrets.FLEEK_TOKEN }}
FLEEK_PROJECT_ID: cm1coipco000087g1pcgohgtd
run: pnpm --dir apps/docs deploy:fleek

deploy-registry:
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/draft'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js and pnpm
uses: ./.github/actions/setup-node-pnpm

- name: Build registry
run: pnpm --filter @geist/registry build

- name: Deploy registry
env:
FLEEK_TOKEN: ${{ secrets.FLEEK_TOKEN }}
FLEEK_PROJECT_ID: cm2lvm8yh000030bm17kmomq9
run: pnpm --dir apps/registry deploy:fleek
Loading