ci: 更新代理配置地址
Some checks failed
Deploy Blog / build (push) Failing after 20s

This commit is contained in:
yinxiaolong
2026-07-23 18:44:25 +08:00
parent fb4912165a
commit 49ddbdc604

View File

@@ -11,11 +11,23 @@ jobs:
HTTP_PROXY: http://10.255.0.1:7890 HTTP_PROXY: http://10.255.0.1:7890
HTTPS_PROXY: http://10.255.0.1:7890 HTTPS_PROXY: http://10.255.0.1:7890
steps: steps:
- name: Execute remote SSH commands using password - name: Checkout
uses: appleboy/ssh-action@v1 uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with: with:
host: ${{ secrets.HOST }} node-version: 20
username: ${{ secrets.USERNAME }} cache: pnpm
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }} - name: Install dependencies
script: ls -la / run: pnpm install
- name: Build
run: pnpm run docs:build
- name: Show build output
run: ls -la docs/.vuepress/dist