duckdb-tinyorm 1.0.24 → 1.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,6 +18,8 @@ jobs:
18
18
  with:
19
19
  node-version: '22' # Use the version you prefer
20
20
  cache: 'npm'
21
+ registry-url: "https://registry.npmjs.org"
22
+ always-auth: true
21
23
 
22
24
  - name: Install dependencies
23
25
  run: npm install
@@ -28,6 +30,14 @@ jobs:
28
30
  - name: Build the library
29
31
  run: npm run build
30
32
 
33
+ - name: Commit build artifacts
34
+ run: |
35
+ git config user.name "Naim Sulejmani"
36
+ git config user.email "naim.sulejmani@gmail.com"
37
+ git add .
38
+ git commit -m "chore: commit build artifacts"
39
+ continue-on-error: true # Allow it to continue if there's nothing to commit
40
+
31
41
  - name: Publish to npm
32
42
  env:
33
43
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -37,7 +47,4 @@ jobs:
37
47
  - name: Bump version
38
48
  run: |
39
49
  npm version patch
40
- git config user.name "Naim Sulejmani"
41
- git config user.email "naim.sulejmani@gmail.com"
42
50
  git push origin HEAD --tags
43
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "duckdb-tinyorm",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "description": "TinyORM for Duckdb, easy setup",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",