Skip to content

Commit

Permalink
Don't automatically build container
Browse files Browse the repository at this point in the history
Code has been commented out until #9 has been properly addressed.
  • Loading branch information
arisp99 committed Oct 22, 2021
1 parent 7943d99 commit 6d5f664
Showing 1 changed file with 29 additions and 26 deletions.
55 changes: 29 additions & 26 deletions .github/workflows/build-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,35 @@ on:
required: true
default: "dev"

# Trigger on push
# Only triggers if anything in src/, bin/, programs/, a .ipynb file, or a .def
# file at the root of the repo changes
push:
branches: [main, master]
paths:
- "src/**"
- "bin/**"
- "programs/**"
- "*.def"
- "**.ipynb"

# Trigger on PR
# Only triggers if anything in src/, bin/, programs/, a .ipynb file, or a .def
# file at the root of the repo changes
pull_request:
paths:
- "src/**"
- "bin/**"
- "programs/**"
- "*.def"
- "**.ipynb"

# Trigger on published release
release:
types: [published]
# TODO: Uncomment the following lines of code when we have reduced the memory
# usage of MIPTools.
# Github issue: https://github.com/bailey-lab/MIPTools/issues/9
# # Trigger on push
# # Only triggers if anything in src/, bin/, programs/, a .ipynb file, or a .def
# # file at the root of the repo changes
# push:
# branches: [main, master]
# paths:
# - "src/**"
# - "bin/**"
# - "programs/**"
# - "*.def"
# - "**.ipynb"

# # Trigger on PR
# # Only triggers if anything in src/, bin/, programs/, a .ipynb file, or a .def
# # file at the root of the repo changes
# pull_request:
# paths:
# - "src/**"
# - "bin/**"
# - "programs/**"
# - "*.def"
# - "**.ipynb"

# # Trigger on published release
# release:
# types: [published]

# Set path to definition file
env:
Expand Down

0 comments on commit 6d5f664

Please sign in to comment.