We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cb13f0 commit bc00e16Copy full SHA for bc00e16
.github/workflows/github-pages.yml
@@ -28,7 +28,15 @@ jobs:
28
- name: Checkout
29
uses: actions/checkout@v3
30
- uses: ./.github/actions/install-deps
31
- - run: sudo apt-get install -y ruby=2.2
+ # install rvm and ruby 2.2
32
+ - run: sudo apt-get -y install software-properties-common
33
+ - run: sudo apt-add-repository -y ppa:rael-gc/rvm
34
+ - run: sudo apt-get update
35
+ - run: sudo apt-get install rvm
36
+ - run: sudo usermod -a -G rvm $USER
37
+ - run: . /etc/profile.d/rvm.sh
38
+ - run: rvm install 2.2
39
+ - run: rvm use 2.2
40
- run: sudo gem install bundler -v 2.1.4
41
# TODO use npm run install-jekyll?
42
- run: sudo ./bin/install-jekyll.sh
0 commit comments