Skip to content

Commit 0f83b2d

Browse files
committed
Apply changes in deploy-realm.yml
1 parent 926b00c commit 0f83b2d

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/deploy-realm.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: realm
33
on:
44
push:
55
paths:
6-
- "realm/**"
6+
- "r/**"
77
branches:
88
- main
99

@@ -25,12 +25,20 @@ jobs:
2525
- run: go mod download -x
2626
- run: |
2727
printf '\n\n%s\n\n' "$MNEMONIC" | $GNOKEY add --recover --insecure-password-stdin test1'
28-
cd realm
2928
echo "" | $GNOKEY maketx addpkg \
3029
--gas-wanted 50000000 \
3130
--gas-fee 1ugnot \
3231
--pkgpath gno.land/r/demo/chess_${GITHUB_SHA} \
33-
--pkgdir . \
32+
--pkgdir r/chess \
33+
--insecure-password-stdin \
34+
--remote \
35+
--broadcast test1'
36+
37+
echo "" | $GNOKEY maketx addpkg \
38+
--gas-wanted 50000000 \
39+
--gas-fee 1ugnot \
40+
--pkgpath gno.land/r/demo/reward_entry_${GITHUB_SHA} \
41+
--pkgdir r/reward_entry \
3442
--insecure-password-stdin \
3543
--remote \
3644
--broadcast test1'

0 commit comments

Comments
 (0)