Skip to content
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

Build documentation as part of persistence layer #35

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
display contents of Gemfile
  • Loading branch information
capsulecorplab committed Dec 1, 2023
commit 8d51e84107a473e489cecdfa0b5feb1ce9ae2f79
9 changes: 9 additions & 0 deletions playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,15 @@
cmd: echo 'gem "fprime-theme", git{{ ":" }} "https://github.com/fprime-community/fprime-theme"' >> Gemfile
chdir: /home/kasm-default-profile/fprime/docs
executable: /bin/bash
- name: Get contents of fprime/docs/Gemfile
shell:
cmd: cat Gemfile
chdir: /home/kasm-default-profile/fprime/docs
executable: /bin/bash
register: fprime_docs_gemfile
- name: Display fprime/docs/Gemfile
debug:
msg: "fprime/docs/Gemfile = {{ fprime_docs_gemfile.stdout }}"
- name: Install jekyll and fprime-theme from Gemfile.lock in fprime/docs using bundler
shell:
cmd: bundler install
Expand Down