Skip to content

Commit 54b14fb

Browse files
committed
release 0.1.0
1 parent 11423ad commit 54b14fb

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.github/workflows/publish.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: publish to npm
2+
3+
on:
4+
workflow_dispatch:
5+
release:
6+
types: [created]
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: "20"
16+
registry-url: "https://registry.npmjs.org"
17+
18+
- run: yarn install --frozen-lockfile
19+
- run: yarn ci
20+
21+
- run: npm publish
22+
env:
23+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "module",
33
"name": "apigen-ts",
4-
"version": "0.0.3",
4+
"version": "0.1.0",
55
"license": "MIT",
66
"author": "Vlad Pronsky <v.pronsky@gmail.com>",
77
"repository": "vladkens/apigen-ts",

0 commit comments

Comments
 (0)