remove builds we dont need

This commit is contained in:
Bill Yang 2025-05-08 14:23:41 -07:00
parent 79a94f51fc
commit f2fb9a7a44
2 changed files with 0 additions and 56 deletions

View file

@ -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

View file

@ -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