feat: 支持对更新脚本进行线上构建
This commit is contained in:
parent
8889c20071
commit
f4737cfd08
1 changed files with 34 additions and 0 deletions
34
.github/workflows/script_build.yml
vendored
Normal file
34
.github/workflows/script_build.yml
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
name: Todo Script Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "main" ]
|
||||||
|
paths: [ "script/**" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "main" ]
|
||||||
|
paths: [ "script/**" ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4.2.2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Setup Node
|
||||||
|
uses: actions/setup-node@v4.4.0
|
||||||
|
with:
|
||||||
|
node-version: 22
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: cd script && npm install
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-pages-artifact@v3.0.1
|
||||||
|
with:
|
||||||
|
path: ./script/updateVersionCode.js
|
||||||
Loading…
Reference in a new issue