From 563aff2d723e8103c088752d48be45ada9c1ff41 Mon Sep 17 00:00:00 2001 From: Emerson Bottero Date: Thu, 20 Oct 2022 23:03:17 -0300 Subject: [PATCH] fix: gh pages workflow --- .github/gh-pages-publish.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/gh-pages-publish.yml b/.github/gh-pages-publish.yml index 4a5fc4d95..75ea8b666 100644 --- a/.github/gh-pages-publish.yml +++ b/.github/gh-pages-publish.yml @@ -9,9 +9,14 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v3 + - name: Install pnpm + uses: pnpm/action-setup@v2.2.4 + + - name: Install deps + run: pnpm install + - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. run: | - pnpm install cd ./packages/mermaid pnpm docs:bundle - name: Deploy 🚀📕