From 42a3c53675a4c235f7d5a25011af5cd5551d80a7 Mon Sep 17 00:00:00 2001 From: shpookas Date: Thu, 29 Jan 2026 12:13:10 +0000 Subject: [PATCH 1/2] fair value aws --- .github/workflows/pr-pipeline.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/pr-pipeline.yml b/.github/workflows/pr-pipeline.yml index 9233d6c..a62ae73 100644 --- a/.github/workflows/pr-pipeline.yml +++ b/.github/workflows/pr-pipeline.yml @@ -36,9 +36,6 @@ jobs: rm -rf lumina-infra git clone -q https://$LUMINA_INFRA_PAT@github.com/diadata-org/lumina-infra lumina-infra - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v4 with: @@ -55,7 +52,7 @@ jobs: ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} IMAGE_TAG: commit-hash-${{ env.COMMIT_HASH }} run: | - docker build -f build/Dockerfile -t ${ECR_REGISTRY}/lumina/fair-value:${IMAGE_TAG} . + docker build -f build/Dockerfile-fairValueFeeder -t ${ECR_REGISTRY}/lumina/fair-value:${IMAGE_TAG} . docker push ${ECR_REGISTRY}/lumina/fair-value:${IMAGE_TAG} echo "Pushed image to AWS ECR:" echo " ${ECR_REGISTRY}/lumina/fair-value:${IMAGE_TAG}" From 4abc973ec40ca48bc3c5cf7899bab70985af7f63 Mon Sep 17 00:00:00 2001 From: shpookas Date: Thu, 29 Jan 2026 12:15:44 +0000 Subject: [PATCH 2/2] fair value aws --- .github/workflows/pr-pipeline.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/pr-pipeline.yml b/.github/workflows/pr-pipeline.yml index a62ae73..f402644 100644 --- a/.github/workflows/pr-pipeline.yml +++ b/.github/workflows/pr-pipeline.yml @@ -24,6 +24,16 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: '1.22' + + - name: Run golangci-lint + uses: golangci/golangci-lint-action@v6 + with: + version: latest + - name: Get Short Commit Hash run: | COMMIT_HASH=$(git rev-parse --short HEAD)