Merge pull request #88 from bento-platform/chore/update #362
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: Build and push bento_wes | |
on: | |
release: | |
types: [ published ] | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
build-push: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Bento build action | |
uses: bento-platform/[email protected] | |
with: | |
registry: ghcr.io | |
registry-username: ${{ github.actor }} | |
registry-password: ${{ secrets.GITHUB_TOKEN }} | |
image-name: ghcr.io/bento-platform/bento_wes | |
development-dockerfile: dev.Dockerfile | |
dockerfile: Dockerfile |