From 630545ad3610a9440f0b1a27838215eddeb4761e Mon Sep 17 00:00:00 2001 From: Ezequiel Valencia Date: Thu, 25 Jan 2024 11:35:05 -0500 Subject: [PATCH] Fix Actions Failing Couldn't copy the test resources for the test S3 because the path was wrong. --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index b2c08c5..20ab735 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -73,7 +73,7 @@ jobs: - name: Put test resources in S3Proxy Container run: | aws s3 mb s3://nfive - aws s3 cp ${{ github.workspace }}/src/test/resources/nfive s3://nfive --recursive + aws s3 cp ${{ github.workspace }}/view-simulation-results/src/test/resources/nfive s3://nfive --recursive - name: Set up JDK 8 uses: actions/setup-java@v3