chore(release): 1.17.0 #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update VPS | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
update_vps: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Connect to vps | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.HOST }} | |
username: lili | |
password: ${{ secrets.PASSWORD }} | |
script: | | |
set PATH $PATH:/home/.local/share/nvm/v20.14.0/bin | |
nvm use v20.14.0 | |
cd dicelette/ | |
git pull | |
pnpm i | |
pnpm run restart |