Skip to content

Commit

Permalink
build client
Browse files Browse the repository at this point in the history
  • Loading branch information
echo8 committed Dec 8, 2024
1 parent 125447f commit c905170
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ jobs:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -31,3 +30,20 @@ jobs:
push: true
tags: ghcr.io/echo8/pastesphere:latest
file: Dockerfile.server

build-deploy-client:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22

- name: Install dependencies
run: npm ci

- name: Build client
run: npm run build:client

0 comments on commit c905170

Please sign in to comment.