Skip to content

fix conflict

fix conflict #10

Workflow file for this run

name: Build and Push to Development
on:
push:
branches:
<<<<<<< HEAD

Check failure on line 6 in .github/workflows/dev-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dev-build.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
- dev
=======
- master
>>>>>>> master
jobs:
build:
name: Build and Push to GCR
runs-on: ubuntu-latest
env:
IMAGE_NAME: gcr.io/dev-buildly/insights/dev/buildly-core
steps:
- uses: actions/checkout@v2
- name: Docker login
uses: docker/login-action@v1
with:
registry: gcr.io
username: _json_key
password: ${{ secrets.GCR_JSON_KEY }}
- name: Build docker image
run: docker build -t $IMAGE_NAME:latest .
- name: Push to Google Container Registry
run: docker push $IMAGE_NAME:latest