diff --git a/.github/workflows/build-containers.yml b/.github/workflows/build-containers.yml index ad50f3e8..b19c32aa 100644 --- a/.github/workflows/build-containers.yml +++ b/.github/workflows/build-containers.yml @@ -52,6 +52,7 @@ jobs: - name: Build and Push Image env: CONTAINERVER: ${{ needs.build-containers-common.outputs.containerver }} + VERSION: ${{ github.ref_name }} run: | docker buildx build --platform linux/${{ matrix.arch }} \ -f Dockerfile.dev \ diff --git a/apps/frontend/src/components/launches/launches.component.tsx b/apps/frontend/src/components/launches/launches.component.tsx index 4a6341ce..cd3bcf4b 100644 --- a/apps/frontend/src/components/launches/launches.component.tsx +++ b/apps/frontend/src/components/launches/launches.component.tsx @@ -452,6 +452,9 @@ export const LaunchesComponent = () => { {sortedIntegrations?.length > 0 && user?.tier?.ai && billingEnabled && } +
+ {process.env.VERSION ? `v${process.env.VERSION}` : ''} +