From 95bfcb15438057c62ecf6ec6938b26d64874d61d Mon Sep 17 00:00:00 2001 From: hxuanyu <2252193204@qq.com> Date: Mon, 4 Nov 2024 10:41:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=85=A5gitea=20actions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build-deploy.yaml | 39 ++++++++++++++++++++++++++++++ .gitea/workflows/build-deploy.yml | 32 ------------------------ 2 files changed, 39 insertions(+), 32 deletions(-) create mode 100644 .gitea/workflows/build-deploy.yaml delete mode 100644 .gitea/workflows/build-deploy.yml diff --git a/.gitea/workflows/build-deploy.yaml b/.gitea/workflows/build-deploy.yaml new file mode 100644 index 0000000..3a6e91d --- /dev/null +++ b/.gitea/workflows/build-deploy.yaml @@ -0,0 +1,39 @@ +name: Build SpringBoot and Notify + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + # 检出代码 + - uses: actions/checkout@v3 + + # 设置Java环境 + - name: Set up JDK + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + cache: 'maven' + + # Maven 构建打包 + - name: Build with Maven + run: mvn clean package -DskipTests + + # 发送POST请求 - JSON数据 + - name: Send POST notification + run: | + curl -X POST \ + "https://2758.push.ft07.com/send/sctp2758tbaxw3tz7hyy3zisxzsuixz.send" \ + -H "Content-type: application/x-www-form-urlencoded" \ + -d "title=GiteaAction 执行完成" + -d "desp=GiteaAction 执行内容测试" + -d "tags=Gitea|GiteaActions" \ No newline at end of file diff --git a/.gitea/workflows/build-deploy.yml b/.gitea/workflows/build-deploy.yml deleted file mode 100644 index f288db3..0000000 --- a/.gitea/workflows/build-deploy.yml +++ /dev/null @@ -1,32 +0,0 @@ -steps: - # 检出代码 - - uses: actions/checkout@v3 - - # 设置Java环境 - - name: Set up JDK - uses: actions/setup-java@v3 - with: - java-version: '8' # 根据你的项目需求修改Java版本 - distribution: 'temurin' - cache: 'maven' - - # Maven 构建打包 - - name: Build with Maven - run: mvn clean package -DskipTests - - # 上传构建产物(可选) - - name: Upload artifact - uses: actions/upload-artifact@v3 - with: - name: application - path: target/*.jar - - # 发送HTTP GET请求通知 - - name: Send HTTP notification - run: | - curl -X POST \ - "https://2758.push.ft07.com/send/sctp2758tbaxw3tz7hyy3zisxzsuixz.send" \ - -H "Content-type: application/x-www-form-urlencoded" \ - -d "title=GiteaAction 执行完成" - -d "desp=GiteaAction 执行内容测试" - -d "tags=Gitea|GiteaActions" \ No newline at end of file