This is an automated email from the ASF dual-hosted git repository. alsay pushed a commit to branch doxygen in repository https://gitbox.apache.org/repos/asf/datasketches-cpp.git
commit 478bed204484afb5923207d4162556b11b7b725e Author: AlexanderSaydakov <[email protected]> AuthorDate: Fri Jul 7 11:44:01 2023 -0700 replaced the marketplace doxygen action with simple commands --- .github/workflows/doxygen.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index 249caf2..42d5d98 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -12,11 +12,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Install doxygen + run: sudo apt install doxygen -y - name: Run Doxygen - uses: mattnotmitt/[email protected] - with: - doxyfile-path: ./Doxyfile - working-directory: . + run: doxygen Doxyfile - name: Pages Deployment uses: peaceiris/[email protected] with: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
