Skip to content
Snippets Groups Projects
Unverified Commit 660da7a8 authored by Egor_P's avatar Egor_P Committed by GitHub
Browse files

[Backport] Fix parity-publish (#5670) (#5907)


Backport of the fix that prevents `parity-publish` from failing during
installation.

---------

Signed-off-by: default avatarOliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: default avatarOliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
parent 82b1fe37
Branches
No related merge requests found
......@@ -73,7 +73,7 @@ jobs:
- name: install parity-publish
# Set the target dir to cache the build.
run: CARGO_TARGET_DIR=./target/ cargo install parity-publish@0.8.0 -q
run: CARGO_TARGET_DIR=./target/ cargo install parity-publish@0.8.0 --locked -q
- name: check semver
run: |
......
......@@ -20,7 +20,7 @@ jobs:
cache-on-failure: true
- name: install parity-publish
run: cargo install parity-publish@0.8.0
run: cargo install parity-publish@0.8.0 --locked -q
- name: parity-publish check
run: parity-publish --color always check --allow-unpublished
......@@ -18,7 +18,7 @@ jobs:
cache-on-failure: true
- name: install parity-publish
run: cargo install parity-publish@0.8.0
run: cargo install parity-publish@0.8.0 --locked -q
- name: parity-publish claim
env:
......
......@@ -17311,7 +17311,7 @@ dependencies = [
[[package]]
name = "sc-client-db"
version = "0.44.0"
version = "0.44.1"
dependencies = [
"array-bytes",
"criterion",
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment