Merge pull request #658 from bento-platform/dependabot/pip/docs/sqlpa… #1606
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 katsu image | |
| on: | |
| release: | |
| types: [ published ] | |
| pull_request: | |
| branches: | |
| - develop | |
| - 'features/**' | |
| push: | |
| branches: | |
| - develop | |
| jobs: | |
| build-push: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: "recursive" | |
| - name: Run Bento build action | |
| uses: bento-platform/bento_build_action@v1.0.0 | |
| with: | |
| registry: ghcr.io | |
| registry-username: ${{ github.actor }} | |
| registry-password: ${{ secrets.GITHUB_TOKEN }} | |
| image-name: ghcr.io/bento-platform/katsu | |
| development-dockerfile: bento.dev.Dockerfile | |
| dockerfile: bento.Dockerfile |