commit 2297b34378df90db304f3803231dd2d9be964859 Author: Kevin Harrington Date: Wed Nov 15 08:41:41 2023 -0500 Initial commit diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..7a55a6d --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,43 @@ +name: "Release" +on: + push: + tags: + - '*' + +jobs: + + convert_via_pandoc: + runs-on: ubuntu-22.04 + steps: + - name: Checkout repository and submodules + uses: actions/checkout@v2 + with: + submodules: recursive + - run: sudo apt install pandoc texlive-latex-extra + - run: wget https://github.com/jgm/pandoc/releases/download/3.1.7/pandoc-3.1.7-1-amd64.deb + - run: sudo dpkg -i pandoc-3.1.7-1-amd64.deb + - run: echo $PWD + - run: ls -al ./ + - run: ls -al ../ + - run: pandoc --standalone --self-contained --embed-resources --from markdown --output=BancroftRobodogsNotebook.pdf README.md + - run: ls -al . + - name: release + uses: actions/create-release@v1 + id: create_release + with: + draft: false + prerelease: false + release_name: ${{ steps.get_version.outputs.VERSION }} + tag_name: ${{ github.ref }} + env: + GITHUB_TOKEN: ${{ github.token }} + + - name: Upload PDF + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ github.token }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: BancroftRobodogsNotebook.pdf + asset_name: BancroftRobodogsNotebook.pdf + asset_content_type: application/binary diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b52ae1f --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ + +.DS_Store +BancroftRobodogsNotebook.pdf diff --git a/README.md b/README.md new file mode 100644 index 0000000..9899c41 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Example Documentation Repo + + + +# Members + +Kevin Harrington + +![Kevin Harrington](image/kh_profile.jpeg) + +Elisa Heinricher + +![Elisa as cat](image/elisa.jpg) diff --git a/image/elisa.jpg b/image/elisa.jpg new file mode 100644 index 0000000..054850e Binary files /dev/null and b/image/elisa.jpg differ diff --git a/image/kh_profile.jpeg b/image/kh_profile.jpeg new file mode 100644 index 0000000..9e6206a Binary files /dev/null and b/image/kh_profile.jpeg differ