-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'hog-plus-plus' into hogql-autocomplete
- Loading branch information
Showing
280 changed files
with
13,810 additions
and
8,150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ on: | |
- master | ||
paths-ignore: | ||
- 'rust/**' | ||
- 'livestream/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
name: Livestream Docker CI/CD | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'livestream/**' | ||
- '.github/workflows/livestream-docker-image.yml' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
outputs: | ||
sha: ${{ steps.push.outputs.digest }} | ||
|
||
steps: | ||
- name: Check out livestream code | ||
uses: actions/checkout@v4 | ||
with: | ||
sparse-checkout: 'livestream/' | ||
sparse-checkout-cone-mode: false | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
logout: false | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ghcr.io/posthog/posthog/livestream | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Build and push Docker image | ||
id: push | ||
if: github.ref == 'refs/heads/master' | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: livestream/ | ||
file: livestream/Dockerfile | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
||
deploy: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: get deployer token | ||
id: deployer | ||
uses: getsentry/action-github-app-token@v3 | ||
with: | ||
app_id: ${{ secrets.DEPLOYER_APP_ID }} | ||
private_key: ${{ secrets.DEPLOYER_APP_PRIVATE_KEY }} | ||
|
||
- name: Trigger livestream deployment | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ steps.deployer.outputs.token }} | ||
repository: PostHog/charts | ||
event-type: commit_state_update | ||
client-payload: | | ||
{ | ||
"values": { | ||
"image": { | ||
"sha": "${{ needs.build.outputs.sha }}" | ||
} | ||
}, | ||
"release": "livestream", | ||
"commit": ${{ toJson(github.event.head_commit) }}, | ||
"repository": ${{ toJson(github.repository) }} | ||
} |
Oops, something went wrong.