Merge pull request #311 from claimed-framework/fix-runner #102
This file contains hidden or 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 push CLAIMED operators | |
| on: | |
| push: | |
| 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 'claimed-framework@proton.me' | |
| bash .github/build_operators.sh |