ko-publish-aggregator-and-operator #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish Incredible Squaring Aggregator and Operator | |
on: | |
push: | |
branches: ['master'] | |
paths: | |
- '**.go' | |
# we can also trigger manually in case needed | |
workflow_dispatch: | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
permissions: | |
# Need this to be allowed to publish image to registry | |
# see https://docs.github.com/en/actions/publishing-packages/publishing-docker-images | |
packages: write | |
contents: read | |
steps: | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20.x' | |
- uses: actions/checkout@v2 | |
- uses: ko-build/[email protected] | |
# We build both the aggregator and the operator in the same job | |
# we could separate them, but anyways they share core/ so it would get messy | |
# See https://ko.build/configuration/#naming-images to understand --preserve-import-paths | |
# TODO: this currently fails when trying to read from private eigensdk-go repo... | |
# prob need to add permission somewhere. will figure out some other time, or maybe wait until we make it public | |
- run: KO_DOCKER_REPO=ghcr.io/layr-labs/incredible-squaring ko build aggregator/cmd/main.go --preserve-import-paths | |
- run: KO_DOCKER_REPO=ghcr.io/layr-labs/incredible-squaring ko build operator/cmd/main.go --preserve-import-paths |