From 97621c35017276e9c164e013fc2af830d2f80a99 Mon Sep 17 00:00:00 2001 From: Radhika Patel Date: Mon, 20 May 2024 12:50:15 +0530 Subject: [PATCH] add github action for dev --- .github/workflows/dev-build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dev-build.yml b/.github/workflows/dev-build.yml index 3bf2cabe..31504040 100644 --- a/.github/workflows/dev-build.yml +++ b/.github/workflows/dev-build.yml @@ -1,16 +1,15 @@ -name: Build and Push to Development +name: Build and Push to Dev on: push: branches: - - dev - + - master jobs: build: name: Build and Push to GCR runs-on: ubuntu-latest env: - IMAGE_NAME: gcr.io/dev-buildly/transparent-path/buildly-core + IMAGE_NAME: gcr.io/spry-bricolage-298920/transparent-path/dev/buildly-core steps: - uses: actions/checkout@v2 @@ -19,7 +18,7 @@ jobs: with: registry: gcr.io username: _json_key - password: ${{ secrets.DEV_GCR_JSON_KEY }} + password: ${{ secrets.GCR_JSON_KEY }} - name: Build docker image run: docker build -t $IMAGE_NAME:latest .