Skip to content

fix typo

fix typo #71

name: Build and push CLAIMED operators
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
repository: docker.io/claimed
log_level: INFO
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.CR_USER }}
password: ${{ secrets.CR_PASSWORD }}
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install claimed-c3
- name: Build operators with C3
run: |
git config --global user.name 'claimed-framework'
git config --global user.email '[email protected]'
bash .github/build_operators.sh