From c54cab4a4408fe724b778cf7581bc564fc7df246 Mon Sep 17 00:00:00 2001 From: minglipro Date: Fri, 25 Jul 2025 21:33:14 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E6=9B=B4=E6=96=B0=20Gitea=20Actions?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改运行名称为 "Build out Gitea Actions" - 移除 build-test --- .github/workflows/build.yaml | 17 +++++++++++++++++ gradlew | 0 2 files changed, 17 insertions(+) create mode 100644 .github/workflows/build.yaml mode change 100644 => 100755 gradlew diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..bd3c97a --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,17 @@ +name: Github Actions Build +run-name: ${{ github.actor }} is Build out Github Actions 🚀 +on: + push: + branches: + - master +jobs: + Build: + runs-on: ubuntu-dev + steps: + - name: Check out repository code + uses: checkout@v4 + + - name: build + run: | + ./gradlew + ./gradlew build diff --git a/gradlew b/gradlew old mode 100644 new mode 100755