Skip to content

Commit 6409772

Browse files
committed
fix: repair publish pipeline
1 parent 2241c78 commit 6409772

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
command: cp
3333
source: ${{ secrets.AWS_S3_BUCKET }}
34-
destination: /data/rewards-calculation-test-data
34+
destination: ./rewards-calculation-test-data
3535
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
3636
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
3737
aws_region: ${{ secrets.AWS_REGION }}
@@ -40,7 +40,7 @@ jobs:
4040
- name: 🍀 Generate .env file
4141
run: |
4242
echo "SPRING_PROFILES_ACTIVE=ci" >> src/test/resources/.env
43-
echo "JSON_DATA_SOURCE_FOLDER=/data/rewards-calculation-test-data" >> src/test/resources/.env
43+
echo "JSON_DATA_SOURCE_FOLDER=./rewards-calculation-test-data" >> src/test/resources/.env
4444
4545
- name: Build
4646
run: |

0 commit comments

Comments
 (0)