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
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,19 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Build and push observability configs image
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile.observability-configs
platforms: linux/arm64
push: true
tags: |
ghcr.io/mohith1612/job-queue-system/observability-configs:latest
ghcr.io/mohith1612/job-queue-system/observability-configs:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max

deploy-backend:
name: Deploy Backend to Oracle VM
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile.observability-configs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
FROM alpine:3.19
COPY observability/ /configs/
Loading