Skip to content

Commit bd3c6d1

Browse files
committed
fix action and bump version
1 parent daa067a commit bd3c6d1

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
- name: Install dependencies
2525
run: pnpm install --frozen-lockfile
2626

27+
- name: Show git status before publish
28+
run: |
29+
git status --short
30+
git diff --stat
31+
2732
- name: Verify tag matches package.json version
2833
run: |
2934
TAG="${GITHUB_REF_NAME}"
@@ -36,4 +41,4 @@ jobs:
3641
- name: Publish
3742
env:
3843
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
39-
run: pnpm publish --access public
44+
run: npm publish --access public

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "content-structure",
33
"type": "module",
4-
"version": "2.2.0",
4+
"version": "2.2.1",
55
"description": "Stores parsed markdown in SQLite tables that can be used for rendering and database content management.",
66
"main": "index.js",
77
"bin": {

0 commit comments

Comments
 (0)