From a17f22faccd2fa6b8a3bb4fcff11b82f3091eed9 Mon Sep 17 00:00:00 2001 From: Daniel Sanchez Date: Tue, 14 Dec 2021 13:20:11 +0100 Subject: [PATCH] Fix static folder naming in upload script (#177) * Update static build folder to push * Set v0.9.4 --- .github/workflows/deploy-storybook.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-storybook.yml b/.github/workflows/deploy-storybook.yml index 83913e01..73533d07 100644 --- a/.github/workflows/deploy-storybook.yml +++ b/.github/workflows/deploy-storybook.yml @@ -79,7 +79,7 @@ jobs: # Script to upload release files - name: 'Upload release build files for production' if: startsWith(github.ref, 'refs/tags/v') - run: aws s3 sync build s3://${{ secrets.STAGING_BUCKET_NAME }}/releases/${{ github.event.release.tag_name }} --delete + run: aws s3 sync storybook-static s3://${{ secrets.STAGING_BUCKET_NAME }}/releases/${{ github.event.release.tag_name }} --delete # Script to prepare production deployments - run: bash ./scripts/github/prepare_production_deployment.sh diff --git a/package.json b/package.json index f3119d95..b89ad060 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gnosis.pm/safe-react-components", - "version": "0.9.3", + "version": "0.9.4", "description": "Gnosis UI components", "main": "dist/index.min.js", "typings": "dist/index.d.ts",