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",