Skip to content

migrated to public git repo #1

migrated to public git repo

migrated to public git repo #1

name: Build and push depmap-base image
on:
push:
branches:
- "master"
paths:
- "depmap-base/**"
- ".github/workflows/build_depmap_base_docker.yml"
env:
DOCKER_REPO: us.gcr.io/broad-achilles/depmap-base
DOCKER_TAG: ga-build-${{ github.run_number }}
jobs:
build-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to GCR
uses: docker/login-action@v2
with:
registry: us.gcr.io
username: _json_key
password: ${{ secrets.DEPMAP_DEPLOY_SVC_ACCT }}
- name: Build and push depmap base docker image
run: cd depmap-base && bash build-depmap-base.sh ${{ env.DOCKER_REPO }} ${{ env.DOCKER_TAG }}