wip: clean up, athena is now a 64bits architecture #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish ISA | ||
on: | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
jobs: | ||
run-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Install dependencies | ||
run: sudo apt install pdflatex texlive-science texlive-latex-extra | ||
- name: Build PDF ISA | ||
run: make | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: | | ||
athena_crypto.pdf | ||
athena_fpu.pdf | ||
athena_isa.pdf |