Some checks failed
Deploy Blog / build (push) Failing after 1s
将 HTTP 和 HTTPS 代理从 10.255.0.1 更
33 lines
684 B
YAML
33 lines
684 B
YAML
name: Deploy Blog
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
HTTP_PROXY: http://10.255.0.1:7890
|
|
HTTPS_PROXY: http://10.255.0.1:7890
|
|
http_proxy: http://10.255.0.1:7890
|
|
https_proxy: http://10.255.0.1:7890
|
|
steps:
|
|
# - name: Checkout
|
|
# uses: actions/checkout@v4
|
|
#
|
|
# - name: Setup pnpm
|
|
# uses: pnpm/action-setup@v4
|
|
|
|
- name: test
|
|
run: curl -x 127.0.0.1:7890 ip.sb
|
|
#
|
|
# - name: Install dependencies
|
|
# run: pnpm install
|
|
#
|
|
# - name: Build
|
|
# run: pnpm run docs:build
|
|
#
|
|
# - name: Show build output
|
|
# run: ls -la docs/.vuepress/dist |