diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml deleted file mode 100644 index 4fe97c7..0000000 --- a/.gitea/workflows/build.yaml +++ /dev/null @@ -1,22 +0,0 @@ -name: Build and Deploy Golang Service - -on: [push] - -jobs: - build: - name: Build Golang Service - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: 2.10 # 可以根据您的项目要求更改Go的版本 - - - name: Build - run: | - go mod download - go build -o dev-go-admin .