Skip to content

Commit e4db859

Browse files
Add publish workflow (#8)
1 parent 6b438f5 commit e4db859

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/publish.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Publish Release
2+
3+
on:
4+
release:
5+
types: [created]
6+
workflow_dispatch:
7+
8+
jobs:
9+
build-and-publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v3
14+
15+
- name: Set up Node.js
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: '20'
19+
registry-url: 'https://registry.npmjs.org'

0 commit comments

Comments
 (0)