Skip to content

Commit 5c71f49

Browse files
committed
VED-812: Fix variable name.
1 parent 0c8af42 commit 5c71f49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/run-e2e-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ jobs:
7070
- name: Get Apigee access token
7171
env:
7272
APIGEE_PASSWORD: ${{ secrets.APIGEE_PASSWORD }}
73-
APIGEE_OAUTH_TOKEN: ${{ secrets.APIGEE_BASIC_AUTH_TOKEN }}
74-
APIGEE_OTP_SECRET: ${{ secrets.APIGEE_OTP_KEY }}
73+
APIGEE_BASIC_AUTH_TOKEN: ${{ secrets.APIGEE_BASIC_AUTH_TOKEN }}
74+
APIGEE_OTP_KEY: ${{ secrets.APIGEE_OTP_KEY }}
7575
run: |
76-
CODE=$(oathtool --totp -b "$APIGEE_OTP_SECRET")
76+
CODE=$(oathtool --totp -b "$APIGEE_OTP_KEY")
7777
echo "::add-mask::$CODE"
7878
echo "Requesting access token from Apigee..."
7979
response=$(curl -s -X POST "https://login.apigee.com/oauth/token" \

0 commit comments

Comments
 (0)