Skip to content

Implement integration with remote configuration APIs and adjust funct… #734

Implement integration with remote configuration APIs and adjust funct…

Implement integration with remote configuration APIs and adjust funct… #734

Workflow file for this run

name: Build and publish services
on:
push:
tags:
- "v*.*.*"
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Docker meta
id: meta
uses: docker/[email protected]
with:
images: |
octarine-operator
flavor: |
latest=false
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Setup Operator SDK
run: |
mkdir /tmp/operator-sdk
git clone -b v1.29.0 https://github.com/operator-framework/operator-sdk /tmp/operator-sdk
cd /tmp/operator-sdk
make install
cd -
- run: make generate
- run: make manifests
- run: make test
- name: Build and push
run: make docker-build docker-push IMG=cbartifactory/${{ steps.meta.outputs.tags }} VERSION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}