Skip to content

Commit db5b4e7

Browse files
committed
Fixed incorrect secret var
1 parent 5f56927 commit db5b4e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy-docker.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Load SSH Key
4949
uses: webfactory/[email protected]
5050
with:
51-
ssh-private-key: ${{ secrets.SSH_KEY }}
51+
ssh-private-key: ${{ secrets.SSHKEY }}
5252

5353
- name: Deploy
5454
run: scp -o StrictHostKeyChecking=no ./tabletopper-http.tar ./tabletoper-wss.tar ${{ secrets.USERNAME }}@${{ secrets.HOST }}:~/
@@ -59,7 +59,7 @@ jobs:
5959
host: ${{ secrets.HOST }}
6060
USERNAME: ${{ secrets.USERNAME }}
6161
PORT: 22
62-
KEY: ${{ secrets.SSH_KEY }}
62+
KEY: ${{ secrets.SSHKEY }}
6363
script: docker load -i ~/tabletopper-wss.tar && docker load -i ~/tabletopper-http.tar
6464

6565
- name: Purge cache

0 commit comments

Comments
 (0)