From 2dd403e9f6ae7028359a89f1c0d586b1f734ec4a Mon Sep 17 00:00:00 2001 From: Abin Date: Tue, 6 Dec 2022 15:49:10 +0530 Subject: [PATCH] Add back build --- .github/workflows/auto-version-docs.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/auto-version-docs.yml b/.github/workflows/auto-version-docs.yml index 58a5bda58..a6b48b511 100644 --- a/.github/workflows/auto-version-docs.yml +++ b/.github/workflows/auto-version-docs.yml @@ -38,6 +38,20 @@ jobs: npm ci npm run docusaurus docs:version "$VERSION" + - name: Build website + env: + CORSO_VERSION: ${{ needs.SetEnv.outputs.version }} + run: | + cd website && + npm ci && + npm run build + + - uses: actions/upload-artifact@master + name: Upload website as artifacts + with: + name: website + path: website/build + - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: