Skip to content

Commit 48c5043

Browse files
Fix publish workflow retry errors
1 parent f612ad3 commit 48c5043

7 files changed

Lines changed: 18 additions & 11 deletions

File tree

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
continue-on-error: true
3434
env:
3535
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
36-
- name: Publish simulator
37-
run: cargo publish --manifest-path examples/simulator/Cargo.toml
36+
- name: Publish exoware-qmdb
37+
run: cargo publish --manifest-path qmdb/Cargo.toml
3838
continue-on-error: true
3939
env:
4040
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
41-
- name: Publish exoware-qmdb
42-
run: cargo publish --manifest-path qmdb/Cargo.toml
41+
- name: Publish exoware-simulator
42+
run: cargo publish --manifest-path examples/simulator/Cargo.toml
4343
continue-on-error: true
4444
env:
4545
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

qmdb/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ edition.workspace = true
55
license.workspace = true
66
description = "QMDB instance backed by the Exoware API."
77
readme = "README.md"
8+
homepage.workspace = true
9+
repository = "https://github.com/exowarexyz/monorepo/tree/main/qmdb"
10+
documentation = "https://docs.rs/exoware-qmdb"
811

912
[features]
1013
test-utils = []

qmdb/ts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"homepage": "https://exoware.xyz",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/exowarexyz/monorepo.git",
10+
"url": "git+https://github.com/exowarexyz/monorepo.git",
1111
"directory": "qmdb/ts"
1212
},
1313
"publishConfig": {
@@ -39,4 +39,4 @@
3939
"devDependencies": {
4040
"typescript": "^5.5.3"
4141
}
42-
}
42+
}

sdk-ts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"homepage": "https://exoware.xyz",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/exowarexyz/monorepo.git",
10+
"url": "git+https://github.com/exowarexyz/monorepo.git",
1111
"directory": "sdk-ts"
1212
},
1313
"publishConfig": {
@@ -44,4 +44,4 @@
4444
"ts-jest": "^29.2.2",
4545
"typescript": "^5.5.3"
4646
}
47-
}
47+
}

server/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ name = "exoware-server"
33
version.workspace = true
44
edition.workspace = true
55
license.workspace = true
6-
homepage.workspace = true
76
description = "Serve the Exoware API."
7+
readme = "README.md"
8+
homepage.workspace = true
89
repository = "https://github.com/exowarexyz/monorepo/tree/main/server"
910
documentation = "https://docs.rs/exoware-server"
1011

sql/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ edition.workspace = true
55
license.workspace = true
66
description = "SQL engine backed by the Exoware API."
77
readme = "README.md"
8+
homepage.workspace = true
9+
repository = "https://github.com/exowarexyz/monorepo/tree/main/sql"
10+
documentation = "https://docs.rs/exoware-sql"
811

912
[[bin]]
1013
name = "sql"

sql/ts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"homepage": "https://exoware.xyz",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/exowarexyz/monorepo.git",
10+
"url": "git+https://github.com/exowarexyz/monorepo.git",
1111
"directory": "sql/ts"
1212
},
1313
"publishConfig": {
@@ -38,4 +38,4 @@
3838
"devDependencies": {
3939
"typescript": "^5.5.3"
4040
}
41-
}
41+
}

0 commit comments

Comments
 (0)