Bump express from 4.18.2 to 4.19.2 in /kr-engne/www #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: jetli/[email protected] | |
with: | |
# Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest') | |
version: 'v0.10.0' | |
- name: Build wasm-pack | |
run: wasm-pack build | |
working-directory: ./kr-engne | |
- name: Install node packages | |
run: npm install | |
working-directory: ./kr-engne/www | |
- name: Build dist | |
run: npm run build | |
working-directory: ./kr-engne/www | |
- name: Deploy dist to Github Pages | |
uses: JamesIves/[email protected] | |
if: ${{ github.ref == 'refs/heads/master' }} | |
with: | |
branch: master | |
folder: kr-engne/www/dist | |
repository-name: kilork/kilork.github.io | |
token: ${{ secrets.PAT }} | |
target-folder: kr-engne | |
clean: true |