Skip to content

Commit 4d7db50

Browse files
committed
Allow individual crate tags
1 parent 054d353 commit 4d7db50

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Publish
22
on:
33
push:
44
tags:
5+
- 'console-v[0-9]+.[0-9]+.[0-9]+*'
6+
- 'os-v[0-9]+.[0-9]+.[0-9]+*'
7+
- 'sqlite-v[0-9]+.[0-9]+.[0-9]+*'
8+
- 'timers-v[0-9]+.[0-9]+.[0-9]+*'
9+
- 'url-v[0-9]+.[0-9]+.[0-9]+*'
510
- 'v[0-9]+.[0-9]+.[0-9]+*'
611

712
jobs:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ sqlite = ["rquickjs-extra-sqlite"]
2121
[dependencies]
2222
rquickjs-extra-console = { version = "0.1.0", path = "modules/console", optional = true }
2323
rquickjs-extra-os = { version = "0.1.0", path = "modules/os", optional = true }
24-
rquickjs-extra-sqlite = { version = "0.1.0", path = "modules/sqlite", optional = true }
24+
rquickjs-extra-sqlite = { version = "0.1.1", path = "modules/sqlite", optional = true }
2525
rquickjs-extra-timers = { version = "0.1.0", path = "modules/timers", optional = true }
2626
rquickjs-extra-url = { version = "0.1.0", path = "modules/url", optional = true }
2727

0 commit comments

Comments
 (0)