Skip to content

Commit

Permalink
feat: deploy posthog instance
Browse files Browse the repository at this point in the history
  • Loading branch information
loicguillois committed Jun 12, 2024
1 parent 374b6ea commit 5e98664
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/github-actions-posthog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: PostHog CI

on:
push:
paths:
- posthog/**

jobs:
deploy-posthog:
uses: ./.github/workflows/deploy.yml
with:
app: posthog
branch: main
secrets: inherit
12 changes: 6 additions & 6 deletions .talismanrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
fileignoreconfig:
- filename: .github/workflows/github-actions-posthog.yml
checksum: 554702c517c943acd536d237d388e174ea809c8baaf7c938129089c8816066e6
- filename: .github/workflows/github-actions.yml
checksum: b1a53b557b6b2ac4c57f6afce9e902582f5589f97762a963da587496a455c0c1
- filename: database/*
Expand Down Expand Up @@ -38,12 +40,6 @@ fileignoreconfig:
checksum: a9dcff1f35295ed617ba50e44cc95c57c63130e80a43e9303c20f160c3b3165d
- filename: frontend/src/views/Login/LoginView.test.tsx
checksum: a1fab3ca0b731331cc1e0945e238f60ba319da577710ebeae502813623985a39
- filename: packages/api-sdk/src/infra/token-provider.ts
checksum: 941d4fabe1280d748cb22341e8a4a9a5a405673ab1f2ff84bac942f38f5664aa
- filename: packages/schemas/src/index.ts
checksum: 45473f39f4b07b3a33b6138a7e6fc3268690b59439d9f539eb1ce2c1abd430dc
- filename: packages/schemas/src/password.ts
checksum: 716d8d646fd8a00af8d4225e15190810f9e8ab082fbb14e7430be109fa676611
- filename: packages/api-sdk/src/infra/test/token-provider.test.ts
checksum: c3ea87f28ca17a354e1dadf58e2832088503f258327f4620e0a23a24bb79241a
- filename: packages/api-sdk/src/infra/token-provider.ts
Expand All @@ -54,6 +50,10 @@ fileignoreconfig:
checksum: e2cabb9dd76c168622f38b4d446907fedcb6f690c86d1c9d1eccbf17a6fe0044
- filename: packages/api-sdk/src/test/housing-api.test.ts
checksum: fb256466ac0b962dee535b787282de895f60fb04274b994bf9f821a9851deecb
- filename: packages/schemas/src/index.ts
checksum: 45473f39f4b07b3a33b6138a7e6fc3268690b59439d9f539eb1ce2c1abd430dc
- filename: packages/schemas/src/password.ts
checksum: 716d8d646fd8a00af8d4225e15190810f9e8ab082fbb14e7430be109fa676611
- filename: queue/.env.example
checksum: 30e4ee5808230342b969d42d9315fc7744900410a5797d7f7b2e984c678be2e7
- filename: queue/README.md
Expand Down
5 changes: 5 additions & 0 deletions posthog/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM posthog/posthog:latest

EXPOSE 8000

CMD ["./bin/docker-start"]

0 comments on commit 5e98664

Please sign in to comment.