From f2fb9a7a444f1740032ef1e2645ad23ac22f8fea Mon Sep 17 00:00:00 2001 From: Bill Yang <45103519+goldflag@users.noreply.github.com> Date: Thu, 8 May 2025 14:23:41 -0700 Subject: [PATCH] remove builds we dont need --- .github/workflows/client-build.yml | 29 ----------------------------- .github/workflows/server-build.yml | 27 --------------------------- 2 files changed, 56 deletions(-) delete mode 100644 .github/workflows/client-build.yml delete mode 100644 .github/workflows/server-build.yml diff --git a/.github/workflows/client-build.yml b/.github/workflows/client-build.yml deleted file mode 100644 index b4a614e..0000000 --- a/.github/workflows/client-build.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Client Build - -on: - push: - tags: ["v*"] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 1 - submodules: "recursive" - shallow-submodules: true - - - name: Set up Node.js - uses: actions/setup-node@v2 - with: - node-version: "22" - - - name: Install Dependencies - run: npm install - working-directory: ./client - - - name: Build Next.js App - run: npm run build - working-directory: ./client diff --git a/.github/workflows/server-build.yml b/.github/workflows/server-build.yml deleted file mode 100644 index e30552b..0000000 --- a/.github/workflows/server-build.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Backend Build - -on: - push: - tags: ["v*"] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - - name: Set up Node.js - uses: actions/setup-node@v2 - with: - node-version: "22" - - - name: Install Dependencies - run: npm install - working-directory: ./server - - - name: Build backend server - run: npm run build - working-directory: ./server