duckdb-tinyorm 1.0.26 → 1.0.27
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.
|
@@ -30,21 +30,8 @@ jobs:
|
|
|
30
30
|
- name: Build the library
|
|
31
31
|
run: npm run build
|
|
32
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
|
-
|
|
41
33
|
- name: Publish to npm
|
|
42
34
|
env:
|
|
43
35
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
44
36
|
run: npm publish
|
|
45
|
-
if: startsWith(github.ref, 'refs/tags/v')
|
|
46
|
-
|
|
47
|
-
- name: Bump version
|
|
48
|
-
run: |
|
|
49
|
-
npm version patch
|
|
50
|
-
git push origin HEAD --tags
|
|
37
|
+
if: startsWith(github.ref, 'refs/tags/v')
|