From 3dd85387fb4927f3b873e61ccfc40c2aaa6a9c38 Mon Sep 17 00:00:00 2001 From: Will Kelly Date: Thu, 7 Dec 2023 12:46:32 -0600 Subject: [PATCH] adjusting sending to cf --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5f2347e..8c60881 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,12 +34,14 @@ jobs: - name: Get current date id: date run: echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT" + - name: zip the built folder + run: mkdir ./dottmp && zip -r ./dottmp/${{steps.date.outputs.date}}-dotapp ./ios/App - name: Upload IOS to R2 uses: shallwefootball/s3-upload-action@master with: aws_key_id: ${{ env.AWS_KEY_ID }} aws_secret_access_key: ${{ env.AWS_SECRET_ACCESS_KEY}} aws_bucket: dot-mobile - source_dir: "./ios/App" - destination_dir: "/ios/${{steps.date.outputs.date}}/" + source_dir: "./dottmp" + destination_dir: "ios" endpoint: ${{ env.ENDPOINT }}