diff --git a/.gitea/workflows/build-all.yaml b/.gitea/workflows/build-all.yaml deleted file mode 100644 index 86307a83..00000000 --- a/.gitea/workflows/build-all.yaml +++ /dev/null @@ -1,50 +0,0 @@ -# 由于成本问题,现已全面转向 Github Actions 构建 -name: Build FRP Binaries - -on: - push: - branches: - - '**' - tags: - - '**' - workflow_dispatch: - inputs: - tag: - description: 'Manual build tag' - required: false - default: 'manual' - -permissions: - contents: read - -jobs: - build: - name: Build and Package FRP - runs-on: ubuntu-latest - - steps: - - name: Checkout source - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: '1.22' - - - name: Set up dependencies - run: | - sudo apt-get update -y - sudo apt-get install -y zip make gcc g++ upx - - - name: Run build script - run: | - chmod +x ./package.sh - ./package.sh - - - name: Upload build artifacts - uses: actions/upload-artifact@v3 - with: - name: frp-packages - path: release/packages \ No newline at end of file diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index eb631c24..1cd230b0 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -23,4 +23,4 @@ jobs: uses: golangci/golangci-lint-action@v8 with: # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version - version: v2.3 + version: v2.3 \ No newline at end of file diff --git a/package.sh b/package.sh index 16dfcee0..fe8fc283 100755 --- a/package.sh +++ b/package.sh @@ -18,7 +18,7 @@ rm -rf ./release/packages mkdir -p ./release/packages os_all='linux windows darwin freebsd openbsd android' -arch_all='386 amd64 arm arm64 mips64 mips64le mips mipsle riscv64 loong64' +arch_all='amd64 arm arm64' extra_all='_ hf' cd ./release