Skip to content

Commit 4dbe4c4

Browse files
committed
1 parent fa76bce commit 4dbe4c4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/post-smoke.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ jobs:
3030
echo "sarasvati.unicode.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGx+XeCMGtRbA7X26EVcYG41zQrZmM05Vw5I0zISPqz9f+94Vlm4P26hsmY/DCA1j4EMlbbiISqRqzbLfAz1s5s=" >> ~/.ssh/known_hosts
3131
echo "cldr-smoke.unicode.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKebRPtFh4wfiya5UX+8OGJorbdu66PeXASGLvgmSMgewsBF0LwS2r5qcMlv11LdSQh/PrP0gWndmG7bBOQOZj0=" >> ~/.ssh/known_hosts
3232
echo ${SSH_KEY} >> ~/.ssh/id_rsa
33+
md5sum ~/.ssh/id_rsa
34+
echo "Host ${{ vars.SSH_HOST }}" >> ~/.ssh/config
35+
echo " User ${{ vars.SSH_USER }}" >> ~/.ssh/config
36+
echo " Port ${{ vars.SSH_PORT }}" >> ~/.ssh/config
37+
echo " IdentityFile ${HOME}/.ssh/id_rsa" >> ~/.ssh/config
38+
cat ~/.ssh/config
3339
chmod -R go= ~/.ssh
3440
env:
3541
SSH_KEY: ${{ secrets.SSH_KEY }}
@@ -38,7 +44,7 @@ jobs:
3844
run: |
3945
rsync --dry-run --recursive --inplace --verbose --verbose \
4046
docs/charts/${{ steps.setup.outputs.chartnum }}/ \
41-
${{ vars.SSH_USER }}@${{ vars.SSH_HOST }}:public_html/charts/${{ steps.setup.outputs.chartnum }}
47+
${{ vars.SSH_HOST }}:public_html/charts/${{ steps.setup.outputs.chartnum }}
4248
4349
concurrency:
4450
group: ${{ github.workflow }}-${{ github.ref }}

0 commit comments

Comments
 (0)