From 616c05e26b57a18572eb0ea4c3720fadc633dc18 Mon Sep 17 00:00:00 2001 From: Marcos Huck Date: Tue, 28 Jan 2025 14:58:05 -0300 Subject: [PATCH] Replace ref name with SHA Signed-off-by: Marcos Huck --- .github/workflows/ci_pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_pipeline.yml b/.github/workflows/ci_pipeline.yml index 531e7acd3..5434b3c73 100644 --- a/.github/workflows/ci_pipeline.yml +++ b/.github/workflows/ci_pipeline.yml @@ -144,7 +144,7 @@ jobs: - name: Upload documentation artifacts uses: actions/upload-artifact@v4 with: - name: docs-${{ github.ref_name }} + name: docs-${{ github.sha }} path: ./docs/_build/html/ overwrite: true include-hidden-files: true @@ -172,7 +172,7 @@ jobs: - name: Download documentation artifacts uses: actions/download-artifact@v4 with: - name: docs-${{ github.ref_name }} + name: docs-${{ github.sha }} merge-multiple: true - name: Deploy documentation