Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
137 changes: 0 additions & 137 deletions .github/workflows/deploy-preview.yaml

This file was deleted.

8 changes: 1 addition & 7 deletions .github/workflows/trigger-book-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,4 @@ jobs:
environment_file: environment.yml
path_to_notebooks: ./
use_cached_environment: 'true' # This is default, not strickly needed. Set to 'false' to always build a new environment
link-check:
uses: ProjectPythiaCookbooks/cookbook-actions/.github/workflows/link-checker.yaml@main
with:
environment_name: cookbook-dev
environment_file: environment.yml
path_to_notebooks: ./
use_cached_environment: 'true'

12 changes: 12 additions & 0 deletions .github/workflows/trigger-deploy-preview.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: trigger-deploy-preview
on:
workflow_run:
workflows:
- trigger-book-build
types:
- requested
- completed

jobs:
deploy:
uses: ProjectPythiaCookbooks/cookbook-actions/.github/workflows/deploy-preview.yaml@main
13 changes: 13 additions & 0 deletions .github/workflows/trigger-link-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: trigger-link-check
on:
pull_request:

jobs:
link-check:
uses: ProjectPythiaCookbooks/cookbook-actions/.github/workflows/link-checker.yaml@main
with:
environment_name: cookbook-dev
environment_file: environment.yml
path_to_notebooks: ./
use_cached_environment: 'true'