Skip to content

DescriptorV3 upgrade trait updates #511

DescriptorV3 upgrade trait updates

DescriptorV3 upgrade trait updates #511

Workflow file for this run

name: Bots CI/CD
on:
push:
branches:
- master
pull_request:
paths:
- "packages/nouns-bots/**"
branches:
- "**"
jobs:
build_and_push:
name: Build and Push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to GCR
uses: docker/login-action@v1
with:
registry: gcr.io
username: _json_key
password: ${{ secrets.CARROT_GCR_SA }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile.bots
push: true
tags: gcr.io/nouns-infra/bots:${{ github.sha }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}