Skip to content

Commit d483e78

Browse files
committed
chore: remove dry run
1 parent 3502e4c commit d483e78

File tree

3 files changed

+5
-17
lines changed

3 files changed

+5
-17
lines changed

Diff for: .github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ jobs:
5656

5757
- name: Publish (latest)
5858
if: github.ref == 'refs/heads/main'
59-
run: npm publish --access public --dry-run
59+
run: npm publish --access public
6060
env:
6161
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6262

6363
- name: Publish (next)
6464
if: github.ref != 'refs/heads/main'
65-
run: npm publish --access public --tag next --dry-run
65+
run: npm publish --access public --tag next
6666
env:
6767
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Diff for: Cargo.lock

+2-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ kv-mem = ["surrealdb/kv-mem"]
2525
stack-traces = ["dep:console_error_panic_hook"]
2626

2727
[dependencies]
28-
surrealdb = { git = "https://github.com/surrealdb/surrealdb", rev = "6af8ea9", default-features = false, features = [ "http" ] }
28+
surrealdb = { git = "https://github.com/surrealdb/surrealdb", rev = "6fbf847", default-features = false, features = [ "http" ] }
2929
chrono = { version = "0.4.37", features = ["serde", "wasmbind"] }
3030
ciborium = "0.2.2"
3131
console_error_panic_hook = { version = "0.1.7", optional = true }

0 commit comments

Comments
 (0)