@@ -1,19 +1,44 @@
|
|||||||
name: Gitea Actions Demo
|
|
||||||
|
name: 构建项目
|
||||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||||
|
|
||||||
|
# 2. 触发条件 (on)
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
|
# 3. 作业定义 (jobs)
|
||||||
jobs:
|
jobs:
|
||||||
Explore-Gitea-Actions:
|
构建:
|
||||||
|
# 4. 运行器选择 (runs-on)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
# 5. 步骤序列 (steps)
|
||||||
steps:
|
steps:
|
||||||
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
# 步骤 1: 检出代码
|
||||||
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
- name: 检出代码
|
||||||
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
uses: https://gitea.com/actions/checkout@v4
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
- name: 显示目录
|
||||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
run: ls -la
|
||||||
- name: List files in the repository
|
|
||||||
run: |
|
# 步骤 2: 设置 Node.js 环境
|
||||||
ls ${{ gitea.workspace }}
|
- name: 设置 Node.js 环境
|
||||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
uses: https://gitea.com/actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: 'npm'
|
||||||
|
|
||||||
|
# 步骤 3: 安装依赖
|
||||||
|
- name: 安装依赖
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
# 步骤 4: 执行打包命令
|
||||||
|
- name: 执行Build构建
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
|
# 步骤 5: 上传打包产物
|
||||||
|
- name: 上传构建产物
|
||||||
|
uses: https://gitea.com/actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: dist
|
||||||
|
path: dist/
|
||||||
Reference in New Issue
Block a user