From 512b09b24d41cb7a5ccee5ec70adab2ba25ae67d Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Wed, 17 Jul 2024 12:32:10 -0400 Subject: [PATCH] [ci][ez] Rename artifact from process_artifacts_combined Build artifacts are uniquely associated to a single workflow run, so appending the sha was unnecessary. I originally included it to make it easier to download later but this turns out to be unneeded. Drops the sha suffix to make downloading the artifact in a separate script / workflow more straightforward. ghstack-source-id: 36ac4df4c35409fd08fbfa8714043eb556ff88d3 Pull Request resolved: https://github.com/facebook/react/pull/30364 --- .github/workflows/runtime_build_and_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/runtime_build_and_test.yml b/.github/workflows/runtime_build_and_test.yml index 92b8e2c7b8..181bb2ffa8 100644 --- a/.github/workflows/runtime_build_and_test.yml +++ b/.github/workflows/runtime_build_and_test.yml @@ -285,7 +285,7 @@ jobs: - name: Archive build artifacts uses: actions/upload-artifact@v4 with: - name: combined_artifacts_${{ github.sha }} + name: artifacts_combined path: | ./build.tgz ./build2.tgz