Skip to content

Commit

Permalink
upload artifacts separately
Browse files Browse the repository at this point in the history
  • Loading branch information
digama0 committed Dec 16, 2023
1 parent 18da566 commit 98cdbd2
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,21 @@ jobs:
run: ./generate-pdf
- name: Build metamath-de.pdf
run: ./generate-pdf normal de
- uses: actions/upload-artifact@v3
- name: Upload metamath.pdf
uses: actions/upload-artifact@v3
with:
name: metamath-pdf
path: |
metamath.pdf
metamath-narrow.pdf
metamath-de.pdf
name: metamath.pdf
path: metamath.pdf
- name: Upload metamath-narrow.pdf
uses: actions/upload-artifact@v3
with:
name: metamath-narrow.pdf
path: metamath-narrow.pdf
- name: Upload metamath-de.pdf
uses: actions/upload-artifact@v3
with:
name: metamath-de.pdf
path: metamath-de.pdf
- name: Release
uses: softprops/action-gh-release@v1
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
Expand Down

0 comments on commit 98cdbd2

Please sign in to comment.