Try this again to make sure triggers are still working after the rest… #9
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: docker | ||
| on: | ||
| pull_request | ||
| paths: | ||
| - planet-notebook-docker/** | ||
| jobs: | ||
| build: | ||
| name: Build Docker | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v5 | ||
| - name: Build Image | ||
| run: | | ||
| docker build -t planet-notebooks planet-notebook-docker/ | ||