From 9570712cfc243bcdaae599e0ce4b9ae5f576eabf Mon Sep 17 00:00:00 2001 From: Ben Hansen Date: Fri, 3 Dec 2021 12:44:16 -0700 Subject: [PATCH] trying to fix wasm deploy --- .github/workflows/deploy.yml | 4 +++- package.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 07bbb17d..360cfd5e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,6 +2,8 @@ name: Deploy to GH Pages on: push: branches: [ master ] +env: + CARGO_TERM_COLOR: always jobs: build: runs-on: ubuntu-latest @@ -16,7 +18,7 @@ jobs: - name: Install and Build Vuepress run: | npm install - npm run build + npm run just-build - name: Deploy uses: JamesIves/github-pages-deploy-action@4.1.5 diff --git a/package.json b/package.json index 4d51eadb..90ec8760 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "test": "echo \"Error: no test specified\" && exit 1", "dev": "build-wasm.sh && vuepress dev docs", "build": "build-wasm.sh && vuepress build docs", - "deploy": "sh deploy.sh" + "just-build": "vuepress build docs" }, "author": "", "license": "ISC",