Merge pull request #76 from halfline/fix-find-package-dependents-bug #37
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
| # https://github.com/sclorg/build-and-push-action | |
| name: Build and push to quay.io registry | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build-and-push-goose-container: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Build and push goose to quay.io registry | |
| uses: sclorg/build-and-push-action@v4 | |
| with: | |
| registry: "quay.io" | |
| registry_namespace: "jotnar" | |
| registry_username: ${{ secrets.REGISTRY_LOGIN }} | |
| registry_token: ${{ secrets.REGISTRY_TOKEN }} | |
| dockerfile: "goose-container/Containerfile" | |
| docker_context: "." | |
| image_name: "goose" | |
| build-and-push-beeai-container: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Build and push beeai to quay.io registry | |
| uses: sclorg/build-and-push-action@v4 | |
| with: | |
| registry: "quay.io" | |
| registry_namespace: "jotnar" | |
| registry_username: ${{ secrets.REGISTRY_LOGIN }} | |
| registry_token: ${{ secrets.REGISTRY_TOKEN }} | |
| dockerfile: "beeai/Containerfile" | |
| docker_context: "beeai/" | |
| image_name: "beeai" | |
| # tag: "staging" | |
| build-and-push-mcp-server: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Build and push mcp-server to quay.io registry | |
| uses: sclorg/build-and-push-action@v4 | |
| with: | |
| registry: "quay.io" | |
| registry_namespace: "jotnar" | |
| registry_username: ${{ secrets.REGISTRY_LOGIN }} | |
| registry_token: ${{ secrets.REGISTRY_TOKEN }} | |
| dockerfile: "beeai/Containerfile.mcp" | |
| docker_context: "beeai/" | |
| image_name: "mcp-server" | |
| # tag: "staging" |