Skip to content

Commit

Permalink
fix artifact uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
oxarbitrage committed Oct 26, 2024
1 parent 373cf29 commit 56757bb
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions .github/workflows/tla-pdf-generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,34 @@ jobs:
java -cp tla2tools.jar tla2tex.TLA -shade -noPcalShade Operators.tla
ps2pdf Operators.ps Operators.pdf
# Upload PDFs as artifacts in a documents directory
- name: Upload PDF Artifacts
# Upload p2p PDF
- name: Upload p2p Artifacts
uses: actions/upload-artifact@v3
with:
name: TLA+ Specification PDFs
path: |
name: p2p PDF
path:
p2p.pdf

# Upload Blockchain PDF
- name: Blockchain PDF
uses: actions/upload-artifact@v3
with:
name: Blockchain PDF
path:
Blockchain.pdf

# Upload Utils PDF
- name: Utils PDF
uses: actions/upload-artifact@v3
with:
name: Utils PDF
path:
Utils.pdf

# Upload Operators PDF
- name: Operators PDF
uses: actions/upload-artifact@v3
with:
name: Operators PDF
path:
Operators.pdf

0 comments on commit 56757bb

Please sign in to comment.