-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
GHPAGES-DOCKER needs to be updated - ruby gem #142
Comments
|
@fyliu I updated the Dockerfile in my fork and created a PR hackforla/ghpages-docker#3 but please advise how/when will we test? |
I was going to run the website code with the old and then the new image to see that they both work. Are there specific things that's good to check on? It turns out I can't build the old image from So I only built the updated PR branch. # build the image with the existing <repo>/<name> but with a testing tag
docker build -t hackforlaops/ghpages:testing . Then went into the image to check the gem versions docker run -it hackforlaops/ghpages:testing sh
# inside the container
# check ruby version
ruby --version
# output
ruby 3.3.4 ...
# check gem version
gem list | grep github-pages
# output
github-pages (232)
... So that looks good. |
@roslynwythe Maybe find some website team members to try it? Or would it be better to push a |
@roslynwythe Since it's a separate workflow file, it's probably okay to tack on an automation to push a test image when a PR is approved. Something like...
|
added it to my website team agenda hackforla/website#2607 (comment) |
GitHub Pages is now using v3.3.4 of Ruby. You are using v2.7. Please refer to the ghpages-docker Wiki for instructions on how to update.
The text was updated successfully, but these errors were encountered: