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

Everything #1

Merged
merged 8 commits into from
Apr 2, 2024
Merged
Changes from all commits
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
72 changes: 72 additions & 0 deletions .github/workflows/docs_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Docs

permissions:
contents: write

on:
push:
branches:
- "main"
tags:
- "*"
pull_request:
paths:
- "Docs/**"
- ".github/workflows/**"

#
jobs:
make_docs:
runs-on: ubuntu-latest
name: Build Docs
steps:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
architecture: x64

- uses: actions/checkout@v2
with:
fetch-depth: 0

- run: sudo apt update && sudo apt install texlive-latex-recommended texlive-latex-extra texlive-pictures pandoc rename latexmk

- name: Install docs requirements
run: pip install -r Docs/requirements.txt

- name: Build pdf
run: cd Docs && make

#
- run: mv Docs/_build/latex/*.pdf Docs/_build/latex/VENTURE-1.pdf

- uses: actions/upload-artifact@v2
with:
name: Uniform_and_Style_Guide
path: Docs/_build/latex/VENTURE-1.pdf
#

publish_docs:
# Only run on tags
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
name: Publish Docs
needs: [make_docs]

steps:
- uses: actions/download-artifact@v2
with:
name: Uniform_and_Style_Guide

- name: Upload Docs to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: "*.pdf"
tag: ${{ github.ref }}
overwrite: true
prerelease: true
#
body: "Kitsune Robotics, Automated with github ci/cd."
file_glob: true
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[submodule "Hardware/FENNEC-Modem"]
path = Hardware/FENNEC-Modem
url = https://github.com/Kitsune-Robotics/FENNEC-Modem.git
[submodule "Hardware/CANIO"]
path = Hardware/CANIO
url = https://github.com/Kitsune-Robotics/CANIO.git
[submodule "Hardware/KIT-Controller"]
path = Hardware/KIT-Controller
url = https://github.com/Kitsune-Robotics/KIT-Controller.git
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added CAD/crawler/drivetrain/axle-mounting-plate.FCStd
Binary file not shown.
Binary file added CAD/crawler/drivetrain/drivetrain-assembly.FCStd
Binary file not shown.
Binary file added CAD/crawler/drivetrain/encoder-holder.FCStd
Binary file not shown.
Binary file added CAD/crawler/drivetrain/encoder-spacer.FCStd
Binary file not shown.
Binary file added CAD/crawler/drivetrain/gearbox-mount.FCStd
Binary file not shown.
Binary file added CAD/crawler/drivetrain/gearbox.FCStd
Binary file not shown.
Binary file added CAD/crawler/drivetrain/wheel-drive-hub.FCStd
Binary file not shown.
Binary file added CAD/crawler/frame/Frame.FCStd
Binary file not shown.
Binary file added CAD/crawler/lewis-crawler.FCStd
Binary file not shown.
Loading