From cf3b0c5f540ef29ac2ad0e76f3d273fdc6573571 Mon Sep 17 00:00:00 2001 From: Dipin <26918585+dipinknair@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:27:38 -0500 Subject: [PATCH] FIX: Adapting braking change for upload action (#895) Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> --- .github/workflows/ci_cd.yml | 10 ++++++++++ doc/changelog.d/895.fixed.md | 1 + 2 files changed, 11 insertions(+) create mode 100644 doc/changelog.d/895.fixed.md diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 33d815bfd..37e69aaaa 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -217,6 +217,7 @@ jobs: uses: actions/upload-artifact@v4 if: matrix.mechanical-version == needs.revn-variations.outputs.test_docker_image_version with: + include-hidden-files: true name: coverage-tests path: .cov retention-days: 7 @@ -225,6 +226,7 @@ jobs: uses: actions/upload-artifact@v4 if: matrix.mechanical-version == needs.revn-variations.outputs.test_docker_image_version with: + include-hidden-files: true name: coverage-file-tests path: .coverage retention-days: 7 @@ -295,6 +297,7 @@ jobs: uses: actions/upload-artifact@v4 if: env.MAIN_PYTHON_VERSION == matrix.python-version with: + include-hidden-files: true name: coverage-tests-embedding path: .cov retention-days: 7 @@ -303,6 +306,7 @@ jobs: uses: actions/upload-artifact@v4 if: env.MAIN_PYTHON_VERSION == matrix.python-version with: + include-hidden-files: true name: coverage-file-tests-embedding path: .coverage retention-days: 7 @@ -368,6 +372,7 @@ jobs: uses: actions/upload-artifact@v4 if: env.MAIN_PYTHON_VERSION == matrix.python-version with: + include-hidden-files: true name: coverage-tests-embedding-scripts path: .cov retention-days: 7 @@ -376,6 +381,7 @@ jobs: uses: actions/upload-artifact@v4 if: env.MAIN_PYTHON_VERSION == matrix.python-version with: + include-hidden-files: true name: coverage-file-tests-embedding-scripts path: .coverage retention-days: 7 @@ -454,6 +460,7 @@ jobs: uses: actions/upload-artifact@v4 if: env.MAIN_PYTHON_VERSION == matrix.python-version with: + include-hidden-files: true name: coverage-tests-remote-session-launch path: .cov retention-days: 7 @@ -462,6 +469,7 @@ jobs: uses: actions/upload-artifact@v4 if: env.MAIN_PYTHON_VERSION == matrix.python-version with: + include-hidden-files: true name: coverage-file-tests-remote-session-launch path: .coverage retention-days: 7 @@ -661,9 +669,11 @@ jobs: - name: Upload combined coverage results uses: actions/upload-artifact@v4 with: + include-hidden-files: true name: combined-coverage-results path: .coverage-combined retention-days: 7 + - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 env: diff --git a/doc/changelog.d/895.fixed.md b/doc/changelog.d/895.fixed.md new file mode 100644 index 000000000..6b27a9ba8 --- /dev/null +++ b/doc/changelog.d/895.fixed.md @@ -0,0 +1 @@ +Adapting braking change for upload action \ No newline at end of file