Skip to content

Commit dc3e217

Browse files
committed
workflow
1 parent 1b51d6f commit dc3e217

1 file changed

Lines changed: 8 additions & 10 deletions

File tree

.github/workflows/examples-password-manager.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ jobs:
3131
run: |
3232
set -eExuo pipefail
3333
npm i
34-
pushd examples/password_manager
35-
ln -sf dfx_configs/dfx_rust.json dfx.json
36-
./deploy_locally.sh
34+
cd examples/password_manager/rust
35+
dfx start --background && dfx deploy
3736
cd frontend
3837
npm run lint
3938
examples-password-manager-rust-linux:
@@ -46,9 +45,8 @@ jobs:
4645
run: |
4746
set -eExuo pipefail
4847
npm i
49-
pushd examples/password_manager
50-
ln -sf dfx_configs/dfx_rust.json dfx.json
51-
./deploy_locally.sh
48+
cd examples/password_manager/rust
49+
dfx start --background && dfx deploy
5250
cd frontend
5351
npm run lint
5452
examples-password-manager-motoko-darwin:
@@ -62,8 +60,8 @@ jobs:
6260
run: |
6361
set -eExuo pipefail
6462
npm i
65-
pushd examples/password_manager
66-
./deploy_locally.sh
63+
cd examples/password_manager/motoko
64+
dfx start --background && dfx deploy
6765
cd frontend
6866
npm run lint
6967
examples-password-manager-motoko-linux:
@@ -76,7 +74,7 @@ jobs:
7674
run: |
7775
set -eExuo pipefail
7876
npm i
79-
pushd examples/password_manager
80-
./deploy_locally.sh
77+
cd examples/password_manager/motoko
78+
dfx start --background && dfx deploy
8179
cd frontend
8280
npm run lint

0 commit comments

Comments
 (0)