Skip to content

Commit

Permalink
Add PDF documentation upload to release workflow and install texlive
Browse files Browse the repository at this point in the history
  • Loading branch information
emcrisostomo committed Dec 30, 2024
1 parent 0415faa commit e0e80a9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release-tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y autoconf automake autopoint g++ gettext git libtool make texinfo
sudo apt-get install -y autoconf automake autopoint g++ gettext git libtool make texinfo texlive
- name: Run autogen
run: ./autogen.sh
Expand All @@ -34,4 +34,12 @@ jobs:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./fswatch-${{ github.event.release.tag_name }}.tar.gz
asset_name: fswatch-${{ github.event.release.tag_name }}.tar.gz
asset_content_type: application/gzip

- name: Upload Release PDF documentation
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./fswatch/doc/fswatch.pdf
asset_name: fswatch-${{ github.event.release.tag_name }}.pdf
asset_content_type: application/gzip

0 comments on commit e0e80a9

Please sign in to comment.