diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 22d243d..aceed9d 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -42,4 +42,8 @@ jobs: - name: Run script for aarch run: | #apt-get update -y && apt-get install -y openssh openssl - ssh -A cloud-builder@taishan -o IdentityFile="~/.ssh/taishan.key" -o IdentitiesOnly=yes 'ssh cloud-builder@127.0.0.1 -o IdentityFile="~/.ssh/vml" -o IdentitiesOnly=yes -p 33201 "ls -a"' \ No newline at end of file + ssh -A $SSH_T_USER@$SSH_T_HOST -o IdentityFile="~/.ssh/taishan.key" -o IdentitiesOnly=yes "ssh $SSH_T_USER@127.0.0.1 -o IdentityFile='~/.ssh/vml' -o IdentitiesOnly=yes -p $SSH_T_PORT 'ls -a'" + env: + SSH_T_USER: ${{ secrets.TAISHAN_SSH_USER }} + SSH_T_HOST: ${{ secrets.TAISHAN_SSH_HOST }} + SSH_T_PORT: ${{ secrets.TAISHAN_SSH_PORT }} \ No newline at end of file