Skip to content

Commit 8b6b2d0

Browse files
committed
fix(workflow): node packages to use pg tagged version
1 parent 0620ec1 commit 8b6b2d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ jobs:
184184
echo "Updating versions to ${{ steps.tag.outputs.version }}..."
185185
186186
# Update package.json
187-
jq --arg version "${{ steps.tag.outputs.version }}" \
188-
'.version = $version | .optionalDependencies = (.optionalDependencies | with_entries(.value = $version))' \
187+
jq --arg version "${{ steps.tag.outputs.version }}" --arg versionpg "pg" \
188+
'.version = $version | .optionalDependencies = (.optionalDependencies | with_entries(.value = $versionpg))' \
189189
package.json > package.tmp.json && mv package.tmp.json package.json
190190
191191
echo "✓ Updated package.json to version ${{ steps.tag.outputs.version }}"

src/cloudsync.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
extern "C" {
1818
#endif
1919

20-
#define CLOUDSYNC_VERSION "0.9.6"
20+
#define CLOUDSYNC_VERSION "0.9.62"
2121
#define CLOUDSYNC_MAX_TABLENAME_LEN 512
2222

2323
#define CLOUDSYNC_VALUE_NOTSET -1

0 commit comments

Comments
 (0)