Skip to content

Commit

Permalink
ci: add workflow to publish on npmjs.org
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylfwood committed Mar 4, 2024
1 parent 5466cd7 commit a8186c9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish Packages

on:
push:
workflow_dispatch:

jobs:
npmjs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: wasm

steps:
- uses: actions/checkout@v4

- name: Build
run: ./build.sh
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Rust
name: Test - Rust

on:
push:
workflow_dispatch:
pull_request:
branches: master

jobs:
Expand Down

0 comments on commit a8186c9

Please sign in to comment.