新增构建和打包工作流
This commit is contained in:
@@ -0,0 +1,43 @@
|
|||||||
|
name: Build and Lint
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest env:
|
||||||
|
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [24.x]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
cache: 'npm'
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
- name: Package Source Code
|
||||||
|
run: |
|
||||||
|
tar -czf source-code.tar.gz \
|
||||||
|
--exclude='.git*' \
|
||||||
|
--exclude='.github' \
|
||||||
|
--exclude='node_modules' \
|
||||||
|
--exclude='.next' \
|
||||||
|
--exclude='dist' \
|
||||||
|
--exclude='source-code.tar.gz' \
|
||||||
|
.
|
||||||
|
|
||||||
|
- name: Upload Source Artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: source-code
|
||||||
|
path: source-code.tar.gz
|
||||||
Reference in New Issue
Block a user