get radixbatch from k8s api in batch handler #1081
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: radix-operator-pr | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-operator: | |
name: Build-operator | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build operator image | |
env: | |
REF: ${{ github. sha }} | |
DOCKER_BUILDKIT: 1 | |
run: docker build -t radix-operator:${REF##*/} -f operator.Dockerfile . | |
build-pipeline: | |
name: Build-pipeline | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build pipeline image | |
env: | |
REF: ${{ github. sha }} | |
DOCKER_BUILDKIT: 1 | |
run: docker build -t radix-operator:${REF##*/} -f pipeline.Dockerfile . |