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
3 changes: 1 addition & 2 deletions .github/workflows/binder.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Reference https://mybinder.readthedocs.io/en/latest/howto/gh-actions-badges.html
name: Test this PR on Binder Badge
name: test-binder

on:
pull_request_target:
Expand Down
11 changes: 0 additions & 11 deletions .github/workflows/deploy.yaml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/workflows/execute.yaml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
name: Build and push container image
name: monthly-build

on:
push:
branches: [main, postprint]
paths-ignore:
- 'README.md'
- 'netlify.toml'
schedule:
- cron: "0 9 1 * *" # At 09:00 UTC on the 1st of each month

jobs:
build-and-push:
build-and-execute:
uses: eds-book/notebooks-workflows/.github/workflows/build.yaml@main
secrets:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: publish

on:
push:
branches: [main, postprint]
paths-ignore:
- 'README.md'

jobs:
build-and-execute:
uses: eds-book/notebooks-workflows/.github/workflows/build.yaml@main
secrets:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }}

deploy:
needs: build-and-execute
uses: eds-book/notebooks-workflows/.github/workflows/deploy.yaml@main
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test container image build
name: test-container

on:
pull_request:
Expand Down