From c016984aec922313a4a19541601f49d0e5dd17de Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 12 Aug 2023 20:35:56 -0400 Subject: [PATCH] ci: remove forward slash --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1180b9d..6c2a5b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,10 +50,10 @@ jobs: secret_key: ${{ secrets.S3_SECRET_KEY }} - name: Publish to S3 Dev if: ${{ github.ref_name == 'develop' }} - run: sync "dist/" s3://${{ vars.S3_BUCKET_DEV }}/ + run: sync "dist/" s3://${{ vars.S3_BUCKET_DEV }} - name: Publish to S3 Prod if: ${{ github.ref_name == 'master' }} - run: sync "dist/" s3://${{ vars.S3_BUCKET }}/ + run: sync "dist/" s3://${{ vars.S3_BUCKET }} - name: Setup tmate session uses: mxschmitt/action-tmate@v3 if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled && failure() }}