We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d39bf commit 9ccda50Copy full SHA for 9ccda50
1 file changed
.github/workflows/deploy.yml
@@ -22,15 +22,15 @@ jobs:
22
npm install
23
npm run build
24
25
- - name: Sync public folder to remote server
+ - name: Sync dist folder to remote server
26
env:
27
SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_SSH_KEY }}
28
run: |
29
mkdir -p ~/.ssh
30
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
31
chmod 600 ~/.ssh/id_rsa
32
ssh-keyscan leek.cafe >> ~/.ssh/known_hosts
33
- rsync -avz --delete ./public/ github@leek.cafe:/var/www/same.actor
+ rsync -avz --delete ./dist/ github@leek.cafe:/var/www/same.actor
34
35
- name: Cleanup SSH Key
36
run: rm -f ~/.ssh/id_rsa
0 commit comments