Skip to content

Commit

Permalink
Merge pull request #10 from MAGICGrants/scripts
Browse files Browse the repository at this point in the history
fix(deploy.yml): make env variable definition syntax correct
  • Loading branch information
SamsungGalaxyPlayer authored Oct 15, 2024
2 parents 60b9706 + 501f455 commit c49faa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
git pull
echo "Starting..."
ELECTRUM_RPC_USERNAME="user"
ELECTRUM_RPC_USERNAME="user" \
ELECTRUM_RPC_PASSWORD="${{ secrets.ELECTRUM_RPC_PASSWORD }}" \
BITCOIN_WALLET_SEED="${{ secrets.BITCOIN_WALLET_SEED }}" \
MONERO_DAEMON_ADDRESS="${{ vars.MONERO_DAEMON_ADDRESS }}"
MONERO_DAEMON_ADDRESS="${{ secrets.MONERO_DAEMON_ADDRESS }}"
MONERO_RPC_USERNAME="user"
MONERO_RPC_PASSWORD="${{ secrets.MONERO_RPC_PASSWORD }}" \
MONERO_WALLET_SEED="${{ secrets.MONERO_WALLET_SEED }}" \
Expand Down

0 comments on commit c49faa1

Please sign in to comment.