diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..a7d7e7f Binary files /dev/null and b/.DS_Store differ diff --git a/.gitea/.DS_Store b/.gitea/.DS_Store new file mode 100644 index 0000000..127299e Binary files /dev/null and b/.gitea/.DS_Store differ diff --git a/.gitea/workflows/mvn-deploy.yaml b/.gitea/workflows/mvn-deploy.yaml new file mode 100644 index 0000000..010d419 --- /dev/null +++ b/.gitea/workflows/mvn-deploy.yaml @@ -0,0 +1,25 @@ +## 工作流触发时机 +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