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 daa067a commit bd3c6d1Copy full SHA for bd3c6d1
2 files changed
.github/workflows/publish.yml
@@ -24,6 +24,11 @@ jobs:
24
- name: Install dependencies
25
run: pnpm install --frozen-lockfile
26
27
+ - name: Show git status before publish
28
+ run: |
29
+ git status --short
30
+ git diff --stat
31
+
32
- name: Verify tag matches package.json version
33
run: |
34
TAG="${GITHUB_REF_NAME}"
@@ -36,4 +41,4 @@ jobs:
36
41
- name: Publish
37
42
env:
38
43
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
39
- run: pnpm publish --access public
44
+ run: npm publish --access public
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "content-structure",
3
"type": "module",
4
- "version": "2.2.0",
+ "version": "2.2.1",
5
"description": "Stores parsed markdown in SQLite tables that can be used for rendering and database content management.",
6
"main": "index.js",
7
"bin": {
0 commit comments