Skip to content

Commit

Permalink
chore(ci): add build steps to action
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinHerber committed Jul 10, 2024
1 parent 975c948 commit 6db7f31
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,20 @@ jobs:
with:
fetch-depth: 0

- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Setup pnpm
uses: pnpm/action-setup@v2

- name: Run pnpm install
run: pnpm i

- name: Run pnpm build
run: pnpm run build

- name: Login to Docker registry
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit 6db7f31

Please sign in to comment.