Skip to content

Commit 74604e3

Browse files
authored
Merge branch 'main' into 01-26-implement_error_tracking_and_surveys_for_customer_feedback
2 parents 909c83d + 41983a5 commit 74604e3

130 files changed

Lines changed: 11117 additions & 4022 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/agent-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ jobs:
5959
- name: Install dependencies
6060
run: pnpm install --frozen-lockfile
6161

62+
- name: Build shared (agent dependency)
63+
run: pnpm --filter @posthog/shared run build
64+
6265
- name: Build the package
6366
run: pnpm --filter agent run build
6467

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ jobs:
3333
- name: Build electron-trpc
3434
run: pnpm --filter @posthog/electron-trpc build
3535

36+
- name: Build shared
37+
run: pnpm --filter @posthog/shared build
38+
3639
- name: Build agent
3740
run: pnpm --filter agent build
3841

.github/workflows/tag.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,8 @@ jobs:
4242
GH_TOKEN: ${{ steps.app-token.outputs.token }}
4343
REPOSITORY: ${{ github.repository }}
4444
run: |
45-
# Find the latest minor version tag (vX.Y format - exactly 2 parts)
46-
LATEST_TAG=$(git tag --list 'v[0-9]*.[0-9]*' --sort=-v:refname | grep -E '^v[0-9]+\.[0-9]+$' | head -1)
47-
48-
# Fall back to vX.Y.0 format if no vX.Y tags exist (backward compat)
49-
if [ -z "$LATEST_TAG" ]; then
50-
LATEST_TAG=$(git tag --list 'v[0-9]*.[0-9]*.0' --sort=-v:refname | head -1)
51-
fi
45+
# Find the latest base version tag (vX.Y or vX.Y.0 format)
46+
LATEST_TAG=$(git tag --list 'v[0-9]*.[0-9]*' --sort=-v:refname | grep -E '^v[0-9]+\.[0-9]+(\.0)?$' | head -1)
5247
5348
if [ -z "$LATEST_TAG" ]; then
5449
echo "No version tag found. Create one with: git tag v0.15 && git push origin v0.15"

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ jobs:
7878
- name: Build packages
7979
run: |
8080
pnpm --filter @posthog/electron-trpc build &
81+
pnpm --filter @posthog/shared build
8182
pnpm --filter agent build &
8283
wait
8384

.github/workflows/twig-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ jobs:
6767
- name: Build electron-trpc package
6868
run: pnpm --filter @posthog/electron-trpc run build
6969

70+
- name: Build shared package
71+
run: pnpm --filter @posthog/shared run build
72+
7073
- name: Build agent package
7174
run: pnpm --filter @posthog/agent run build
7275

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,8 @@ AGENTS.md
4545
# Playwright
4646
playwright-results/
4747
playwright-report/
48+
.playwright-cli
4849
test-results/
50+
51+
*storybook.log
52+
storybook-static

0 commit comments

Comments
 (0)