Skip to content

Commit

Permalink
Rename files and use different approach to .env file.
Browse files Browse the repository at this point in the history
  • Loading branch information
jessgusclark committed Feb 9, 2024
1 parent 4dc9171 commit 84dbc98
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .env.relay → .env.eoa
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ DEFAULT_CHAIN_TYPE=TESTNET
RIF_WALLET_KEY=RIF_WALLET
WALLETCONNECT2_PROJECT_ID=d9224e919473fd749ba8298879ce7569

USE_RELAY=true
USE_RELAY=false
13 changes: 6 additions & 7 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Use EOA config file
run: |
rm .env
mv .env.eoa .env
- name: Use Node.js 16.x
uses: actions/setup-node@v4
with:
Expand All @@ -40,8 +45,7 @@ jobs:
run: yarn

- name: Build Android Release
run: |
ENVFILE=.env
run:
cd android
./gradlew app:assembleRelease

Expand All @@ -62,11 +66,6 @@ jobs:
with:
node-version: 16.x

- name: Use Relay config file
run: |
mv .env .env.eoa
mv .env.relay .env
- name: Install dependencies
run: yarn

Expand Down

0 comments on commit 84dbc98

Please sign in to comment.