Alex Couture-Beil
Alex Couture-Beil
Hi @masih, the value of the `IMAGE` arg is added to the hash, even if it's not used in any of the RUN commands. Consider this example: ``` a: FROM...
That's awesome to hear you were able to rebuild it and it worked. We'll accept a PR for such a feature; then once it's fixed upstream we could evaluate if...
Thanks for the note @JensRantil, > How do you know that a deploy has succeeded just because the docker push succeeded? We don't -- all we now is a push...
This has been released under https://github.com/earthly/earthly/releases/tag/v0.6.23 It should be functionally complete; however, it should still be considered experimental and must be enabled with `VERSION --wait-block 0.6`
> ⬢ [Systemd] ❯ earthly --version > earthly version linux/amd64; Debian 11 As Vlad pointed out, the first issue we need to figure out is why there's no version number...
An additional request, is to have a mode that would list all available targets within an Earthfile (along with a summary of their earthlydoc comment).
I tested: ``` test: FROM alpine RUN (date && cat bar) > data SAVE ARTIFACT data AS LOCAL the-date ``` with both this version, and v0.6.21, and the random alphanumeric...
Not that the wildcard has no effect, e.g. this crashes too: ```Earthfile VERSION 0.6 a: FROM alpine WORKDIR /data RUN echo "Main screen turn on" > opperator RUN --push echo...
as a work around, the following might work until we have a better solution: ``` run: FROM alpine COPY --dir +hack/src . RUN cat src/code hack: LOCALLY SAVE ARTIFACT ../src...
> think there are better patterns for storing secrets, like the credentials helpers described above or [what Rails does](https://blog.saeloun.com/2019/10/10/rails-6-adds-support-for-multi-environment-credentials.html). That's an interesting idea to support a built-in encryption pattern. One...