Skip to content

build(deps): bump certifi from 2023.7.22 to 2024.7.4 in /DeepFilterNet #128

build(deps): bump certifi from 2023.7.22 to 2024.7.4 in /DeepFilterNet

build(deps): bump certifi from 2023.7.22 to 2024.7.4 in /DeepFilterNet #128

Workflow file for this run

name: Build WASM Package
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
env:
RUST_LOG: info
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
target: ${{ matrix.target }}
# https://rustwasm.github.io/wasm-pack/installer/
- name: Install wasm-pack
run: cargo install wasm-pack
- name: Build wasm package
run: wasm-pack build libDF --target no-modules --features wasm
- uses: actions/upload-artifact@v4
with:
name: wasm_package
path: ./libDF/pkg
retention-days: 7