Skip to content

Bump keccak from 0.1.5 to 0.1.6 in /wasm_core #56

Bump keccak from 0.1.5 to 0.1.6 in /wasm_core

Bump keccak from 0.1.5 to 0.1.6 in /wasm_core #56

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
env:
CARGO_TERM_COLOR: always
permissions:
contents: write
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin
~/.cargo/registry
~/.cargo/git
wasm_core/target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
targets: wasm32-unknown-unknown
- name: Build project
run: make build && rm -f www/pkg/.gitignore
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./www
publish_branch: gh-pages
force_orphan: true