Skip to content

push helm 05

push helm 05 #821

Workflow file for this run

name: Build and publish services
on:
push:
tags:
- "v*.*.*"
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
helm:
runs-on: ubuntu-latest
steps:
- name: Push Helm chart to OCI compatible registry (DockerHub)
uses: bsord/[email protected]
with:
useOCIRegistry: true
registry-url: oci://registry-1.docker.io/cbartifactory
username: ${{ secrets.DOCKERHUB_USER }}
access-token: ${{ secrets.DOCKERHUB_PASSWORD }}
force: true
chart-folder: charts
build:
if: github.ref == 'refs/heads/master'
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.21.4
- name: Setup Operator SDK
run: |
mkdir /tmp/operator-sdk
git clone -b v1.32.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'] }}