From 471d90734a7a3329b23712473ca7667cc4ac4e0d Mon Sep 17 00:00:00 2001 From: Dominik Gresch Date: Wed, 16 Oct 2024 08:57:37 +0200 Subject: [PATCH] Fix doc upload for v8 actions (#537) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add newly-required inputs for v8 of the Ansys actions, see https://actions.docs.ansys.com/version/dev/migrations/index.html#migration-guide Co-authored-by: René Roos <105842014+roosre@users.noreply.github.com> --- .github/workflows/ci_cd.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 4bd1b23b2..f558b4d33 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -241,8 +241,10 @@ jobs: - uses: ansys/actions/doc-deploy-dev@v8 with: cname: ${{ env.DOCUMENTATION_CNAME }} - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }} force-orphan: false + bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }} + bot-email: ${{ secrets.PYANSYS_CI_BOT_EMAIL }} release: name: "Release project" @@ -272,5 +274,7 @@ jobs: - uses: ansys/actions/doc-deploy-stable@v8 with: cname: ${{ env.DOCUMENTATION_CNAME }} - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }} force-orphan: false + bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }} + bot-email: ${{ secrets.PYANSYS_CI_BOT_EMAIL }}