ci: fetch nip44 in the push-triggered Build workflow too
release.yml got a fetch-nip44 step alongside fetch-nym (ae4306f), but the
push-triggered build.yml (Linux/Windows/MacOS Build) never did, so every
push has been failing cargo build with "failed to get nip44 as a
dependency ... No such file or directory" once nip44 became a path dep.
This commit is contained in:
@@ -17,6 +17,8 @@ jobs:
|
|||||||
submodules: recursive
|
submodules: recursive
|
||||||
# nym-sdk is a path dep on ../nym; materialize it before building.
|
# nym-sdk is a path dep on ../nym; materialize it before building.
|
||||||
- uses: ./.github/actions/fetch-nym
|
- uses: ./.github/actions/fetch-nym
|
||||||
|
# nip44 is a path dep on ../nip44; materialize it before building.
|
||||||
|
- uses: ./.github/actions/fetch-nip44
|
||||||
- name: Release build
|
- name: Release build
|
||||||
run: cargo build --release
|
run: cargo build --release
|
||||||
|
|
||||||
@@ -28,6 +30,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- uses: ./.github/actions/fetch-nym
|
- uses: ./.github/actions/fetch-nym
|
||||||
|
- uses: ./.github/actions/fetch-nip44
|
||||||
- name: Release build
|
- name: Release build
|
||||||
run: cargo build --release
|
run: cargo build --release
|
||||||
|
|
||||||
@@ -39,5 +42,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- uses: ./.github/actions/fetch-nym
|
- uses: ./.github/actions/fetch-nym
|
||||||
|
- uses: ./.github/actions/fetch-nip44
|
||||||
- name: Release build
|
- name: Release build
|
||||||
run: cargo build --release
|
run: cargo build --release
|
||||||
|
|||||||
Reference in New Issue
Block a user