Skip to content

Commit 757b376

Browse files
committed
Fix SSH private key secret names
Use LANGUAGE_SDK_SSH_PRIVATE_KEY and TESTING_SSH_PRIVATE_KEY to match other workflows
1 parent 6deb42f commit 757b376

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/deploy-examples.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
- uses: actions/checkout@v4
3232

3333
- name: Setup SSH Agent
34-
uses: webfactory/ssh-agent@v0.9.0
34+
- uses: webfactory/ssh-agent@v0.9.1
3535
with:
36-
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
36+
ssh-private-key: ${{ secrets.SDK_KEY }}
3737

3838
- name: Setup Python
3939
uses: actions/setup-python@v4
@@ -97,7 +97,9 @@ jobs:
9797
- name: Setup SSH Agent
9898
uses: webfactory/ssh-agent@v0.9.0
9999
with:
100-
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
100+
ssh-private-key: |
101+
${{ secrets.LANGUAGE_SDK_SSH_PRIVATE_KEY }}
102+
${{ secrets.TESTING_SSH_PRIVATE_KEY }}
101103
102104
- name: Setup Python
103105
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)