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