Skip to content

Commit 91f6d7a

Browse files
committed
feat: add version for the build
1 parent 3c4bdb9 commit 91f6d7a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/build-containers.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
- name: Build and Push Image
5353
env:
5454
CONTAINERVER: ${{ needs.build-containers-common.outputs.containerver }}
55+
VERSION: ${{ github.ref_name }}
5556
run: |
5657
docker buildx build --platform linux/${{ matrix.arch }} \
5758
-f Dockerfile.dev \

apps/frontend/src/components/launches/launches.component.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,9 @@ export const LaunchesComponent = () => {
452452
{sortedIntegrations?.length > 0 &&
453453
user?.tier?.ai &&
454454
billingEnabled && <GeneratorComponent />}
455+
<div className="mt-[5px]">
456+
{process.env.VERSION ? `v${process.env.VERSION}` : ''}
457+
</div>
455458
</div>
456459
</div>
457460
<div className="flex-1 flex flex-col gap-[14px]">

0 commit comments

Comments
 (0)