We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe67c5f commit b661e5fCopy full SHA for b661e5f
.github/workflows/npm-release.md
@@ -0,0 +1,18 @@
1
+# NPM release
2
+
3
+1. Bump version:
4
+ ```bash
5
+ yarn version --patch
6
+ ```
7
8
+2. Push changes and tags:
9
10
+ git push --follow-tags
11
12
13
+3. [Wait for tag pipeline to become green](https://github.com/buffcode/ntp-packet-parser/actions)
14
15
+4. [Create a new release on GitHub](https://github.com/buffcode/ntp-packet-parser/releases/new)
16
+ - Choose the tag from step 1/2
17
+ - Title is `v{version}`
18
+ - Give some description on what changed
.github/workflows/npm-release.yml
@@ -1,8 +1,9 @@
name: Node.js Package
on:
+ workflow_dispatch:
release:
- types: [created]
+ types: [released]
jobs:
publish:
0 commit comments