trying to fix wasm deploy

pull/279/head
Ben Hansen 3 years ago
parent 52aa4a3d9b
commit 9570712cfc

@ -2,6 +2,8 @@ name: Deploy to GH Pages
on: on:
push: push:
branches: [ master ] branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -16,7 +18,7 @@ jobs:
- name: Install and Build Vuepress - name: Install and Build Vuepress
run: | run: |
npm install npm install
npm run build npm run just-build
- name: Deploy - name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.5 uses: JamesIves/github-pages-deploy-action@4.1.5

@ -10,7 +10,7 @@
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"dev": "build-wasm.sh && vuepress dev docs", "dev": "build-wasm.sh && vuepress dev docs",
"build": "build-wasm.sh && vuepress build docs", "build": "build-wasm.sh && vuepress build docs",
"deploy": "sh deploy.sh" "just-build": "vuepress build docs"
}, },
"author": "", "author": "",
"license": "ISC", "license": "ISC",

Loading…
Cancel
Save