Skip to content

Commit

Permalink
Try with new key
Browse files Browse the repository at this point in the history
  • Loading branch information
kullJul committed Oct 31, 2023
1 parent 0983cfc commit d25c13c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,13 @@ jobs:


- env:
BING_KEY: ${{ secrets.BING_KEY }}
TEST_BING_KEY: ${{ secrets.TEST_BING_KEY }}
BING_KEY: ${{ secrets.BING_KEY}}
run: |
touch .env
echo BING_KEY="$BING_KEY" >> .env
echo TEST_BING_KEY="$TEST_BING_KEY" >> .env
echo BING_KEY = "$BING_KEY"
echo TEST_BING_KEY = "$TEST_BING_KEY"
- run: npm run test
env:
Expand Down
2 changes: 1 addition & 1 deletion src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const BingSettings = {
MaxBingRequest: 6,

// Add your Bing key here
BingKey: process.env.BING_KEY
BingKey: process.env.TEST_BING_KEY
};

export class GlobeMapSettings extends DataViewObjectsParser {
Expand Down

0 comments on commit d25c13c

Please sign in to comment.