From 5f2861c9f9160c9821e6845af3b1d194742978b5 Mon Sep 17 00:00:00 2001 From: ayflying Date: Thu, 30 Oct 2025 14:24:56 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=8E=E4=BB=93=E5=BA=93=E7=A7=BB=E9=99=A4?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E4=BB=BB=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 60 ----------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 7f41868..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,60 +0,0 @@ -name: Release - -on: - push: - tags: - - 'v*.*.*' - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Go - uses: actions/setup-go@v5 - with: - go-version: '1.24.x' - - - name: Install gf CLI - run: | - go install github.com/gogf/gf/cmd/gf@latest - echo "$(go env GOPATH)/bin" >> $GITHUB_PATH - - - name: Verify gf - run: gf -v - - - name: Build with gf - run: gf build -ew -v "${{ github.ref_name }}" - - - name: Upload build artifacts - uses: actions/upload-artifact@v4 - with: - name: uploads3-${{ github.ref_name }} - path: | - bin/** - - release: - needs: build - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Download artifacts - uses: actions/download-artifact@v4 - with: - name: uploads3-${{ github.ref_name }} - path: bin - - - name: Create GitHub Release - uses: softprops/action-gh-release@v1 - with: - tag_name: ${{ github.ref_name }} - name: ${{ github.ref_name }} - draft: false - prerelease: false - files: | - bin/** \ No newline at end of file