Skip to content

Commit

Permalink
ci: fix key format
Browse files Browse the repository at this point in the history
  • Loading branch information
pozil committed Oct 20, 2024
1 parent e6e457a commit 48fb4f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
echo SALESFORCE_PRIVATE_KEY_PATH=server.key >> .env
echo SALESFORCE_JWT_LOGIN_URL=$SALESFORCE_JWT_LOGIN_URL >> .env
echo SALESFORCE_JWT_CLIENT_ID=$SALESFORCE_JWT_CLIENT_ID >> .env
echo $SALESFORCE_PRIVATE_KEY > server.key
echo "$SALESFORCE_PRIVATE_KEY" > server.key
# Integration tests
- name: 'Integration tests'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
echo SALESFORCE_PRIVATE_KEY_PATH=server.key >> .env
echo SALESFORCE_JWT_LOGIN_URL=$SALESFORCE_JWT_LOGIN_URL >> .env
echo SALESFORCE_JWT_CLIENT_ID=$SALESFORCE_JWT_CLIENT_ID >> .env
echo $SALESFORCE_PRIVATE_KEY > server.key
echo "$SALESFORCE_PRIVATE_KEY" > server.key
# Integration tests
- name: 'Integration tests'
Expand Down

0 comments on commit 48fb4f6

Please sign in to comment.