Skip to content

Commit

Permalink
update windows powershell script
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCyjaneK committed Jan 8, 2025
1 parent ccd1aa1 commit aac5ea1
Showing 1 changed file with 54 additions and 55 deletions.
109 changes: 54 additions & 55 deletions .github/workflows/pr_test_build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,64 +15,63 @@ jobs:
- uses: actions/checkout@v4
- name: Add secrets
run: |
powershell -Command "New-Item -ItemType File -Force lib\\.secrets.g.dart"
powershell -Command "New-Item -ItemType File -Force cw_evm\\lib\\.secrets.g.dart"
powershell -Command "New-Item -ItemType File -Force cw_solana\\lib\\.secrets.g.dart"
powershell -Command "New-Item -ItemType File -Force cw_core\\lib\\.secrets.g.dart"
powershell -Command "New-Item -ItemType File -Force cw_nano\\lib\\.secrets.g.dart"
powershell -Command "New-Item -ItemType File -Force cw_tron\\lib\\.secrets.g.dart"
New-Item -ItemType File -Force lib\.secrets.g.dart
New-Item -ItemType File -Force cw_evm\lib\.secrets.g.dart
New-Item -ItemType File -Force cw_solana\lib\.secrets.g.dart
New-Item -ItemType File -Force cw_core\lib\.secrets.g.dart
New-Item -ItemType File -Force cw_nano\lib\.secrets.g.dart
New-Item -ItemType File -Force cw_tron\lib\.secrets.g.dart
# Add secrets with fallback values
powershell -Command "if ('${{ secrets.SALT }}' -eq '') { Add-Content lib\\.secrets.g.dart 'const salt = \"954f787f12622067f7e548d9450c3832\";' } else { Add-Content lib\\.secrets.g.dart \"const salt = '${{ secrets.SALT }}';\" }"
powershell -Command "if ('${{ secrets.KEY_CHAIN_SALT }}' -eq '') { Add-Content lib\\.secrets.g.dart 'const keychainSalt = \"2d2beba777dbf7dff7013b7a\";' } else { Add-Content lib\\.secrets.g.dart \"const keychainSalt = '${{ secrets.KEY_CHAIN_SALT }}';\" }"
powershell -Command "if ('${{ secrets.KEY }}' -eq '') { Add-Content lib\\.secrets.g.dart 'const key = \"638e98820ec10a2945e968435c9397a3\";' } else { Add-Content lib\\.secrets.g.dart \"const key = '${{ secrets.KEY }}';\" }"
powershell -Command "if ('${{ secrets.WALLET_SALT }}' -eq '') { Add-Content lib\\.secrets.g.dart 'const walletSalt = \"8f7f1b70\";' } else { Add-Content lib\\.secrets.g.dart \"const walletSalt = '${{ secrets.WALLET_SALT }}';\" }"
powershell -Command "if ('${{ secrets.SHORT_KEY }}' -eq '') { Add-Content lib\\.secrets.g.dart 'const shortKey = \"653f270c2c152bc7ec864afe\";' } else { Add-Content lib\\.secrets.g.dart \"const shortKey = '${{ secrets.SHORT_KEY }}';\" }"
powershell -Command "if ('${{ secrets.BACKUP_SALT }}' -eq '') { Add-Content lib\\.secrets.g.dart 'const backupSalt = \"bf630d24ff0b6f60\";' } else { Add-Content lib\\.secrets.g.dart \"const backupSalt = '${{ secrets.BACKUP_SALT }}';\" }"
powershell -Command "if ('${{ secrets.BACKUP_KEY_CHAIN_SALT }}' -eq '') { Add-Content lib\\.secrets.g.dart 'const backupKeychainSalt = \"bf630d24ff0b6f60\";' } else { Add-Content lib\\.secrets.g.dart \"const backupKeychainSalt = '${{ secrets.BACKUP_KEY_CHAIN_SALT }}';\" }"
if ('${{ secrets.SALT }}' -eq '') { Add-Content lib\.secrets.g.dart 'const salt = "954f787f12622067f7e548d9450c3832";' } else { Add-Content lib\.secrets.g.dart "const salt = '${{ secrets.SALT }}';" }
if ('${{ secrets.KEY_CHAIN_SALT }}' -eq '') { Add-Content lib\.secrets.g.dart 'const keychainSalt = "2d2beba777dbf7dff7013b7a";' } else { Add-Content lib\.secrets.g.dart "const keychainSalt = '${{ secrets.KEY_CHAIN_SALT }}';" }
if ('${{ secrets.KEY }}' -eq '') { Add-Content lib\.secrets.g.dart 'const key = "638e98820ec10a2945e968435c9397a3";' } else { Add-Content lib\.secrets.g.dart "const key = '${{ secrets.KEY }}';" }
if ('${{ secrets.WALLET_SALT }}' -eq '') { Add-Content lib\.secrets.g.dart 'const walletSalt = "8f7f1b70";' } else { Add-Content lib\.secrets.g.dart "const walletSalt = '${{ secrets.WALLET_SALT }}';" }
if ('${{ secrets.SHORT_KEY }}' -eq '') { Add-Content lib\.secrets.g.dart 'const shortKey = "653f270c2c152bc7ec864afe";' } else { Add-Content lib\.secrets.g.dart "const shortKey = '${{ secrets.SHORT_KEY }}';" }
if ('${{ secrets.BACKUP_SALT }}' -eq '') { Add-Content lib\.secrets.g.dart 'const backupSalt = "bf630d24ff0b6f60";' } else { Add-Content lib\.secrets.g.dart "const backupSalt = '${{ secrets.BACKUP_SALT }}';" }
if ('${{ secrets.BACKUP_KEY_CHAIN_SALT }}' -eq '') { Add-Content lib\.secrets.g.dart 'const backupKeychainSalt = "bf630d24ff0b6f60";' } else { Add-Content lib\.secrets.g.dart "const backupKeychainSalt = '${{ secrets.BACKUP_KEY_CHAIN_SALT }}';" }
# Add remaining secrets
powershell -Command "Add-Content lib\\.secrets.g.dart \"const changeNowApiKey = '${{ secrets.CHANGE_NOW_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const changeNowApiKeyDesktop = '${{ secrets.CHANGE_NOW_API_KEY_DESKTOP }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const wyreSecretKey = '${{ secrets.WYRE_SECRET_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const wyreApiKey = '${{ secrets.WYRE_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const wyreAccountId = '${{ secrets.WYRE_ACCOUNT_ID }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const moonPayApiKey = '${{ secrets.MOON_PAY_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const moonPaySecretKey = '${{ secrets.MOON_PAY_SECRET_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const sideShiftAffiliateId = '${{ secrets.SIDE_SHIFT_AFFILIATE_ID }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const simpleSwapApiKey = '${{ secrets.SIMPLE_SWAP_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const simpleSwapApiKeyDesktop = '${{ secrets.SIMPLE_SWAP_API_KEY_DESKTOP }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const onramperApiKey = '${{ secrets.ONRAMPER_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const anypayToken = '${{ secrets.ANY_PAY_TOKEN }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const ioniaClientId = '${{ secrets.IONIA_CLIENT_ID }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const twitterBearerToken = '${{ secrets.TWITTER_BEARER_TOKEN }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const trocadorApiKey = '${{ secrets.TROCADOR_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const trocadorExchangeMarkup = '${{ secrets.TROCADOR_EXCHANGE_MARKUP }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const anonPayReferralCode = '${{ secrets.ANON_PAY_REFERRAL_CODE }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const fiatApiKey = '${{ secrets.FIAT_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const ankrApiKey = '${{ secrets.ANKR_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const chainStackApiKey = '${{ secrets.CHAIN_STACK_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const etherScanApiKey = '${{ secrets.ETHER_SCAN_API_KEY }}';\""
powershell -Command "Add-Content cw_evm\\lib\\.secrets.g.dart \"const etherScanApiKey = '${{ secrets.ETHER_SCAN_API_KEY }}';\""
powershell -Command "Add-Content cw_evm\\lib\\.secrets.g.dart \"const moralisApiKey = '${{ secrets.MORALIS_API_KEY }}';\""
powershell -Command "Add-Content cw_evm\\lib\\.secrets.g.dart \"const nowNodesApiKey = '${{ secrets.EVM_NOWNODES_API_KEY }}';\""
powershell -Command "Add-Content cw_solana\\lib\\.secrets.g.dart \"const ankrApiKey = '${{ secrets.ANKR_API_KEY }}';\""
powershell -Command "Add-Content cw_solana\\lib\\.secrets.g.dart \"const chainStackApiKey = '${{ secrets.CHAIN_STACK_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const testCakePayApiKey = '${{ secrets.TEST_CAKE_PAY_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const cakePayApiKey = '${{ secrets.CAKE_PAY_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const authorization = '${{ secrets.CAKE_PAY_AUTHORIZATION }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const CSRFToken = '${{ secrets.CSRF_TOKEN }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const quantexExchangeMarkup = '${{ secrets.QUANTEX_EXCHANGE_MARKUP }}';\""
powershell -Command "Add-Content cw_nano\\lib\\.secrets.g.dart \"const nano2ApiKey = '${{ secrets.NANO2_API_KEY }}';\""
powershell -Command "Add-Content cw_nano\\lib\\.secrets.g.dart \"const nanoNowNodesApiKey = '${{ secrets.NANO_NOW_NODES_API_KEY }}';\""
powershell -Command "Add-Content cw_tron\\lib\\.secrets.g.dart \"const tronGridApiKey = '${{ secrets.TRON_GRID_API_KEY }}';\""
powershell -Command "Add-Content cw_tron\\lib\\.secrets.g.dart \"const tronNowNodesApiKey = '${{ secrets.TRON_NOW_NODES_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const meldTestApiKey = '${{ secrets.MELD_TEST_API_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const meldTestPublicKey = '${{ secrets.MELD_TEST_PUBLIC_KEY }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const letsExchangeBearerToken = '${{ secrets.LETS_EXCHANGE_TOKEN }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const letsExchangeAffiliateId = '${{ secrets.LETS_EXCHANGE_AFFILIATE_ID }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const stealthExBearerToken = '${{ secrets.STEALTH_EX_BEARER_TOKEN }}';\""
powershell -Command "Add-Content lib\\.secrets.g.dart \"const stealthExAdditionalFeePercent = '${{ secrets.STEALTH_EX_ADDITIONAL_FEE_PERCENT }}';\""
Add-Content lib\.secrets.g.dart "const changeNowApiKey = '${{ secrets.CHANGE_NOW_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const changeNowApiKeyDesktop = '${{ secrets.CHANGE_NOW_API_KEY_DESKTOP }}';"
Add-Content lib\.secrets.g.dart "const wyreSecretKey = '${{ secrets.WYRE_SECRET_KEY }}';"
Add-Content lib\.secrets.g.dart "const wyreApiKey = '${{ secrets.WYRE_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const wyreAccountId = '${{ secrets.WYRE_ACCOUNT_ID }}';"
Add-Content lib\.secrets.g.dart "const moonPayApiKey = '${{ secrets.MOON_PAY_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const moonPaySecretKey = '${{ secrets.MOON_PAY_SECRET_KEY }}';"
Add-Content lib\.secrets.g.dart "const sideShiftAffiliateId = '${{ secrets.SIDE_SHIFT_AFFILIATE_ID }}';"
Add-Content lib\.secrets.g.dart "const simpleSwapApiKey = '${{ secrets.SIMPLE_SWAP_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const simpleSwapApiKeyDesktop = '${{ secrets.SIMPLE_SWAP_API_KEY_DESKTOP }}';"
Add-Content lib\.secrets.g.dart "const onramperApiKey = '${{ secrets.ONRAMPER_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const anypayToken = '${{ secrets.ANY_PAY_TOKEN }}';"
Add-Content lib\.secrets.g.dart "const ioniaClientId = '${{ secrets.IONIA_CLIENT_ID }}';"
Add-Content lib\.secrets.g.dart "const twitterBearerToken = '${{ secrets.TWITTER_BEARER_TOKEN }}';"
Add-Content lib\.secrets.g.dart "const trocadorApiKey = '${{ secrets.TROCADOR_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const trocadorExchangeMarkup = '${{ secrets.TROCADOR_EXCHANGE_MARKUP }}';"
Add-Content lib\.secrets.g.dart "const anonPayReferralCode = '${{ secrets.ANON_PAY_REFERRAL_CODE }}';"
Add-Content lib\.secrets.g.dart "const fiatApiKey = '${{ secrets.FIAT_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const ankrApiKey = '${{ secrets.ANKR_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const chainStackApiKey = '${{ secrets.CHAIN_STACK_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const etherScanApiKey = '${{ secrets.ETHER_SCAN_API_KEY }}';"
Add-Content cw_evm\lib\.secrets.g.dart "const etherScanApiKey = '${{ secrets.ETHER_SCAN_API_KEY }}';"
Add-Content cw_evm\lib\.secrets.g.dart "const moralisApiKey = '${{ secrets.MORALIS_API_KEY }}';"
Add-Content cw_evm\lib\.secrets.g.dart "const nowNodesApiKey = '${{ secrets.EVM_NOWNODES_API_KEY }}';"
Add-Content cw_solana\lib\.secrets.g.dart "const ankrApiKey = '${{ secrets.ANKR_API_KEY }}';"
Add-Content cw_solana\lib\.secrets.g.dart "const chainStackApiKey = '${{ secrets.CHAIN_STACK_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const testCakePayApiKey = '${{ secrets.TEST_CAKE_PAY_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const cakePayApiKey = '${{ secrets.CAKE_PAY_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const authorization = '${{ secrets.CAKE_PAY_AUTHORIZATION }}';"
Add-Content lib\.secrets.g.dart "const CSRFToken = '${{ secrets.CSRF_TOKEN }}';"
Add-Content lib\.secrets.g.dart "const quantexExchangeMarkup = '${{ secrets.QUANTEX_EXCHANGE_MARKUP }}';"
Add-Content cw_nano\lib\.secrets.g.dart "const nano2ApiKey = '${{ secrets.NANO2_API_KEY }}';"
Add-Content cw_nano\lib\.secrets.g.dart "const nanoNowNodesApiKey = '${{ secrets.NANO_NOW_NODES_API_KEY }}';"
Add-Content cw_tron\lib\.secrets.g.dart "const tronGridApiKey = '${{ secrets.TRON_GRID_API_KEY }}';"
Add-Content cw_tron\lib\.secrets.g.dart "const tronNowNodesApiKey = '${{ secrets.TRON_NOW_NODES_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const meldTestApiKey = '${{ secrets.MELD_TEST_API_KEY }}';"
Add-Content lib\.secrets.g.dart "const meldTestPublicKey = '${{ secrets.MELD_TEST_PUBLIC_KEY }}';"
Add-Content lib\.secrets.g.dart "const letsExchangeBearerToken = '${{ secrets.LETS_EXCHANGE_TOKEN }}';"
Add-Content lib\.secrets.g.dart "const letsExchangeAffiliateId = '${{ secrets.LETS_EXCHANGE_AFFILIATE_ID }}';"
Add-Content lib\.secrets.g.dart "const stealthExBearerToken = '${{ secrets.STEALTH_EX_BEARER_TOKEN }}';"
Add-Content lib\.secrets.g.dart "const stealthExAdditionalFeePercent = '${{ secrets.STEALTH_EX_ADDITIONAL_FEE_PERCENT }}';"
- name: download monero_c prebuilds (can't build inside of windows container)
run: |
Expand Down

0 comments on commit aac5ea1

Please sign in to comment.