Skip to content

Commit

Permalink
chore: Update aws references (#470)
Browse files Browse the repository at this point in the history
* chore: Update aws secrets

* fix: Invalid S3 bucket name
  • Loading branch information
cyaiox authored Oct 14, 2024
1 parent 3d9bfd1 commit 1cef52a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ jobs:

- name: deploy preview
env:
AWS_DEFAULT_REGION: us-east-1
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
EXPLORER_WEB_BUCKET: ${{ secrets.EXPLORER_WEB_BUCKET }}
AWS_DEFAULT_REGION: ${{ secrets.EXPLORER_TEAM_AWS_DEFAULT_REGION }}
AWS_ACCESS_KEY_ID: ${{ secrets.EXPLORER_TEAM_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.EXPLORER_TEAM_AWS_SECRET_ACCESS_KEY }}
EXPLORER_TEAM_S3_BUCKET: ${{ secrets.EXPLORER_TEAM_S3_BUCKET }}
if: ${{ steps.install.outputs.public_path }}
run: |
npx @dcl/cdn-uploader@next \
--bucket $EXPLORER_WEB_BUCKET \
--bucket $EXPLORER_TEAM_S3_BUCKET \
--local-folder dist \
--bucket-folder "${{ steps.install.outputs.public_path }}"
Expand Down
4 changes: 2 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export default defineConfig(({ command, mode }) => {
server: {
// this ensures that the browser opens upon server start
open: true,
// this sets a default port to 3000
port: 3000,
// this sets a default port to 5173
port: 5173,
proxy: {
'/cdn/packages/website': {
selfHandleResponse: true,
Expand Down

0 comments on commit 1cef52a

Please sign in to comment.