Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,12 @@ jobs:
CI_KEEP_TEMP_PLATFORM: "ubuntu-24.04"
S3_TESTDATA: ${{ secrets.S3_TESTDATA }}
steps:
- name: Set CI_E2E_FILENAME for e2e test data publishing
run: |
# Set CI_E2E_FILENAME based on branch name, replacing '/' with '-' - used when publishing e2e test data to S3 (e2e.sh) for indexer tests
BRANCH_NAME="${{ github.event.inputs.branch || github.ref_name }}"
MODIFIED_BRANCH_NAME="${BRANCH_NAME//\//-}"
echo "CI_E2E_FILENAME=${MODIFIED_BRANCH_NAME}" >> $GITHUB_ENV
- name: Download workspace archive
uses: actions/download-artifact@v4
with:
Expand Down
Loading