Skip to content

Commit

Permalink
Fix wrong secret key
Browse files Browse the repository at this point in the history
  • Loading branch information
fewensa committed Jan 18, 2022
1 parent dce795e commit 6e2306f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
}' | tee chain_data.json
jq -n \
--arg github_oauth_app_key "${{ secrets.X_GITHUB_OAUTH_APP_KEY }}" \
--arg github_oauth_app_secret "${{ secrets.X_GITHUB_OAUTH_APP_SECRETS }}" \
--arg github_oauth_app_secret "${{ secrets.X_GITHUB_OAUTH_APP_SECRET }}" \
'{
github_oauth_app_key: $github_oauth_app_key,
github_oauth_app_secret: $github_oauth_app_secret
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-stg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
}' | tee chain_data.json
jq -n \
--arg github_oauth_app_key "${{ secrets.X_GITHUB_OAUTH_APP_KEY }}" \
--arg github_oauth_app_secret "${{ secrets.X_GITHUB_OAUTH_APP_SECRETS }}" \
--arg github_oauth_app_secret "${{ secrets.X_GITHUB_OAUTH_APP_SECRET }}" \
'{
github_oauth_app_key: $github_oauth_app_key,
github_oauth_app_secret: $github_oauth_app_secret
Expand Down

0 comments on commit 6e2306f

Please sign in to comment.