From: Nick Porter Date: Mon, 27 Feb 2023 15:03:22 +0000 (+0000) Subject: Correct condition for publishing doxygen content X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ccc0a5685882f5aaaecb923742bd392ffcc5d1e;p=thirdparty%2Ffreeradius-server.git Correct condition for publishing doxygen content --- diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 37534a59c1e..0776a5987f2 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -53,7 +53,7 @@ jobs: doxygen Doxyfile; - name: Deploy doxygen content to GitHub pages - if: ${{ github.ref == 'refs/heads/main' }} + if: ( github.repository_owner == 'FreeRADIUS' ) && ( github.ref == 'refs/heads/master' ) uses: appleboy/gh-pages-action@v0.0.2 with: username: ${{ secrets.CI_DOCUMENTATION_DEPLOY_USER }}