From 31e0f19617d28ae3198a33a0af38ff21998e5c2e Mon Sep 17 00:00:00 2001 From: mrekucci Date: Thu, 1 Aug 2024 21:24:10 +0200 Subject: [PATCH] fix: artifacts.yml action --- .github/workflows/artifacts.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 3503210b2..126160952 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -99,11 +99,11 @@ jobs: - name: Upload Artifacts to AWS S3 run: | - aws s3 cp ./dist/ s3://${{ secrets.AWS_S3_BUCKET }} \ + aws s3 cp /tmp/dist/ s3://${{ secrets.AWS_S3_BUCKET }} \ --recursive \ - --exclude "*" \ + --exclude "*/*" \ --include "*.gz" \ - --include "*.txt" \ + --include "*.txt" - name: Set Artifacts Retention if: ${{ !startsWith(github.ref, 'refs/tags/v') }}