You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 21, 2025. It is now read-only.
Currently, build runs after all the requires run. Could we have a pre_build that runs before the requires? ie,
foobar:
FROM: foobase
pre_build: |
RUN do stuff before foo and bar run
requires:
- foo
- bar
build: |
RUN do stuff after foo and bar run
foo:
build: |
RUN do foo stuff
bar:
build: |
RUN do bar stuff