Skip to content

fix: Add logging to PostgreSQL readiness check in CI workflow #7

fix: Add logging to PostgreSQL readiness check in CI workflow

fix: Add logging to PostgreSQL readiness check in CI workflow #7

Workflow file for this run

name: Publish Package
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
- name: Publish to NPM
run: bun publish --access public
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}