Skip to content

update readme since docx build works now #9

update readme since docx build works now

update readme since docx build works now #9

Workflow file for this run

---
name: "release"
on:
push:
branches:
- "main"
jobs:
release:
name: "Release"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- name: "Install dependencies"
run: |
sudo apt install latexmk texlive-latex-base texlive-latex-extra texlive-latex-recommended pipx
pipx install pdf2docx
- name: "Build"
run: |
latexmk -pdf main.tex
mv "main.pdf" "UFSIT_Constitution.pdf"
pdf2docx convert "UFSIT_Constitution.pdf"
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
title: "Latest Build"
files: |
*.pdf
*.docx