Skip to content

Commit

Permalink
fix html docs zip creation and releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Medek committed Oct 2, 2024
1 parent 985904c commit 798e0e2
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,16 @@ jobs:
BUILD_DOCS=ON
USE_TREZOR_CRYPTO=ON
- name: Create html release
uses: svenstaro/upload-release-action@latest
- name: Archive HTML docs
uses: thedoctor0/zip-release@0.7.5
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/docs/doxygen/html/*
release_name: HTML Documentation
make_latest: true
overwrite: true
file_glob: true
type: 'zip'
filename: 'html-docs.zip'
directory: 'build/docs/doxygen/html/'

- name: Upload HTML docs release
uses: ncipollo/release-action@v1.12.0
with:
artifacts: 'html-docs.zip'
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 798e0e2

Please sign in to comment.