-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can the output of bundle check
be un-hidden?
#79
Comments
Might be faster to make the PR than ask? I'd do it, but you deserve the git praise! |
I am running into the same issue. |
Woohoo 🥳 |
This is now released in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I noticed a warning popping up in some of my builds recently:
Example: this workflow.
It seems that this is due to the change in #61, but I was a bit stumped which dependency this would be – my Gemfile is just this:
As it turns out, the warning is due to a version mismatch in
Gemfile.lock
, but because the output is thrown away (>/dev/null 2>&1
) herejekyll-build-pages/entrypoint.sh
Line 17 in 98742cd
I had to figure out with trial and error.
Would it make sense to not hide that output, to make figuring this out a little easier? For what it's worth, my
Gemfile.lock
is the result ofbundle install
on that minimal Gemfile, and when I runbundle check
with the Gemfile provided by this action with myGemfile.lock
in the container provided by this action, I getwhich I assume is because the Dockerfile uses
jekyll-build-pages/Dockerfile
Line 13 in 98742cd
and having the action output include the missing gem would have made figuring this out way easier.
tl;dr, I suggest
because showing the output is helpful. Would such a PR be welcome?
The text was updated successfully, but these errors were encountered: