From a95e89f4c48ffe6352822ec5b6b169d211b4e0b9 Mon Sep 17 00:00:00 2001 From: ReturnFI <151555003+ReturnFI@users.noreply.github.com> Date: Mon, 15 Sep 2025 18:14:23 +0000 Subject: [PATCH] Remove Beta Build --- .github/workflows/build-beta.yml | 71 -------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 .github/workflows/build-beta.yml diff --git a/.github/workflows/build-beta.yml b/.github/workflows/build-beta.yml deleted file mode 100644 index d28643c..0000000 --- a/.github/workflows/build-beta.yml +++ /dev/null @@ -1,71 +0,0 @@ -name: Build Beta Version - -on: - push: - branches: - - 'beta' - workflow_dispatch: - -jobs: - build-and-package-beta: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: '1.22.x' - cache-dependency-path: core/scripts/auth/go.sum - - - name: Initialize Go module - working-directory: ./core/scripts/auth - run: | - go mod init hysteria_auth - go mod tidy - - - name: Build for linux-amd64 - run: (cd core/scripts/auth && GOOS=linux GOARCH=amd64 go build -o user_auth .) - - - name: Upload amd64 Beta Artifact - uses: actions/upload-artifact@v4 - with: - name: Blitz-amd64 - path: | - . - !.git/** - !.github/** - !*.zip - !.gitignore - !CONTRIBUTING.md - !LICENSE - !README*.md - !SECURITY.md - !changelog - !core/scripts/auth/go.* - !core/scripts/auth/user_auth.go - - - name: Clean amd64 binary - run: rm core/scripts/auth/user_auth - - - name: Build for linux-arm64 - run: (cd core/scripts/auth && GOOS=linux GOARCH=arm64 go build -o user_auth .) - - - name: Upload arm64 Beta Artifact - uses: actions/upload-artifact@v4 - with: - name: Blitz-arm64 - path: | - . - !.git/** - !.github/** - !*.zip - !.gitignore - !CONTRIBUTING.md - !LICENSE - !README*.md - !SECURITY.md - !changelog - !core/scripts/auth/go.* - !core/scripts/auth/user_auth.go