Browse Source

Fix wrong branch names (#227)

* Fix wrong branch names

* add logging

* Add more log and test buildkit

* Remove loggings
Ali Behjati 3 years ago
parent
commit
4667c5fd12

+ 1 - 1
.github/workflows/build.yml

@@ -4,7 +4,7 @@ on:
   pull_request:
   push:
     branches:
-      - dev.v2
+      - main
 jobs:
   # Run the full Tilt build and wait for it to converge
   tilt:

+ 3 - 3
.github/workflows/image-push.yml

@@ -1,9 +1,9 @@
 name: Build and Push Images
 on:
   push:
-    branches: [ master ]
+    branches: [ main ]
   pull_request:
-    branches: [ master ]
+    branches: [ main ]
 
 permissions:
   contents: read
@@ -21,7 +21,7 @@ jobs:
         id: ecr_login
       - run: |
           DOCKER_BUILDKIT=1 docker build -f Dockerfile.wasm -o type=local,dest=. .
-          docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -f third_party/pyth/price-service/Dockerfile.price_service .
+          DOCKER_BUILDKIT=1 docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -f third_party/pyth/price-service/Dockerfile.price_service .
           docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
         env:
           ECR_REGISTRY: ${{ steps.ecr_login.outputs.registry }}

+ 1 - 1
.github/workflows/pyth-terra-contract.yml

@@ -4,7 +4,7 @@ on:
   pull_request:
   push:
     branches:
-      - dev.v2
+      - main
 
 env:
   CARGO_TERM_COLOR: always