Skip to content

Commit

Permalink
chore(ci): re-introduce hoppscotch-ui deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewBastin committed Jun 19, 2023
1 parent e3dd9e9 commit f112c46
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Deploy to Netlify (ui)

on:
push:
branches: [main]
# run this workflow only if an update is made to the ui package
paths:
- "packages/hoppscotch-ui/**"

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup environment
run: mv .env.example .env

- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: 8
run_install: true

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: pnpm

- name: Build site
run: pnpm run generate-ui

# Deploy the ui site with netlify-cli
- name: Deploy to Netlify (ui)
run: npx netlify-cli deploy --dir=packages/hoppscotch-ui/.histoire/dist --prod
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_UI_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}

0 comments on commit f112c46

Please sign in to comment.