Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit 6fa098c

Browse files
committed
add publish workflow
1 parent 8a00ee9 commit 6fa098c

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Publish Package to npmjs
2+
3+
on:
4+
release:
5+
types: [published]
6+
workflow_dispatch:
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version-file: ".nvmrc"
17+
- name: Download artifact
18+
uses: actions/download-artifact@v2
19+
with:
20+
name: libxmlwasm.tgz
21+
path: libxmlwasm.tgz
22+
- run: ls . */

0 commit comments

Comments
 (0)