File tree Expand file tree Collapse file tree 4 files changed +53
-3
lines changed
Expand file tree Collapse file tree 4 files changed +53
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+
3+ extends : default
4+ ignore : |
5+ .git
6+
7+ rules :
8+ line-length : disable
9+ truthy : disable
Original file line number Diff line number Diff line change 1+ ---
2+ name : Deploy PC System Reference Tool
3+
4+ on :
5+ push :
6+ paths-ignore :
7+ - AGENTS.md
8+ - LICENSE
9+ - README.md
10+ - biome.json
11+ - global.d.ts
12+ - package-lock.json
13+ - package.json
14+ - tsconfig.json
15+ branches :
16+ - main
17+
18+ jobs :
19+ lint :
20+ uses : ./.github/workflows/lint.yml
21+ deploy :
22+ runs-on : ubuntu-latest
23+ needs : lint
24+ steps :
25+ # Load the updated code
26+ - name : Load updated code
27+ 28+ with :
29+ host : ${{ secrets.DEPLOY_HOST }}
30+ username : ${{ secrets.DEPLOY_USERNAME }}
31+ key : ${{ secrets.DENSEBOT_PRIVATE_SSH_KEY }}
32+ script_stop : true
33+ script : cd ~/pc-system && git pull
Original file line number Diff line number Diff line change 1+ ---
2+ name : Lint
3+
4+ on :
5+ pull_request :
6+
7+ jobs :
8+ lint :
9+ uses : ./.github/workflows/lint.yml
Original file line number Diff line number Diff line change 1+ ---
12name : Lint
23
34on :
4- push :
5- branches : [main]
6- pull_request :
5+ workflow_call :
76
87jobs :
98 lint :
You can’t perform that action at this time.
0 commit comments