Files
tiesheng-springboot/.gitea/workflows/mvn-deploy.yaml
曾文豪 2a0248ff16
Some checks failed
/ local-deploy (push) Failing after 3s
publish 0.8.4
2025-05-15 23:50:27 +08:00

26 lines
433 B
YAML

## 工作流触发时机
on:
push:
tags:
- '*'
jobs:
## 任务名称
local-deploy:
## 任务执行的服务器
runs-on: tiesheng-local
## 任务步骤
steps:
## 检出代码(固定配置)
- name: Check out repository code
uses: https://git.tieshengkeji.com/actions/checkout@v4
## maven打包
- name: Maven deploy
run: |
mvn deploy