Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/push-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
type=sha
latest
env:
DOCKER_METADATA_SHORT_SHA_LENGTH: 8
- name: Build and Push Cortex Postgres
if: steps.changed_postgres_files.outputs.all_changed_files != ''
id: push_cortex_postgres
Expand Down Expand Up @@ -81,6 +83,8 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
type=sha
latest
env:
DOCKER_METADATA_SHORT_SHA_LENGTH: 8
- name: Build and Push Cortex
id: push_cortex
uses: docker/build-push-action@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-appversion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Get short commit SHA
id: vars
run: echo "sha=sha-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
run: echo "sha=sha-$(git rev-parse --short=8 HEAD)" >> $GITHUB_OUTPUT

- name: Get all changed postgres/ files
id: changed_postgres_files
Expand Down