Skip to content

Commit

Permalink
Apply changes in deploy-realm.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
harry-hov committed Sep 27, 2023
1 parent 926b00c commit 0f83b2d
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/deploy-realm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: realm
on:
push:
paths:
- "realm/**"
- "r/**"
branches:
- main

Expand All @@ -25,12 +25,20 @@ jobs:
- run: go mod download -x
- run: |
printf '\n\n%s\n\n' "$MNEMONIC" | $GNOKEY add --recover --insecure-password-stdin test1'
cd realm
echo "" | $GNOKEY maketx addpkg \
--gas-wanted 50000000 \
--gas-fee 1ugnot \
--pkgpath gno.land/r/demo/chess_${GITHUB_SHA} \
--pkgdir . \
--pkgdir r/chess \
--insecure-password-stdin \
--remote \
--broadcast test1'
echo "" | $GNOKEY maketx addpkg \
--gas-wanted 50000000 \
--gas-fee 1ugnot \
--pkgpath gno.land/r/demo/reward_entry_${GITHUB_SHA} \
--pkgdir r/reward_entry \
--insecure-password-stdin \
--remote \
--broadcast test1'

0 comments on commit 0f83b2d

Please sign in to comment.