Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added carbon impact of cloud providers #58

Merged
merged 8 commits into from
Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/update-cloud-providers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches:
- main
paths:
- 'skyline-vscode/react-ui/src/schema/providers.json'
- 'skyline-vscode/react-ui/public/providers.json'

jobs:
update-information:
Expand All @@ -26,5 +26,5 @@ jobs:

- name: Upload cloud provider file to S3
run: |
aws s3 cp skyline-vscode/react-ui/src/schema/providers.json s3://deepview-explorer-public/vscode-cloud-providers/
aws s3 cp skyline-vscode/react-ui/public/providers.json s3://deepview-explorer-public/vscode-cloud-providers/
aws s3api put-object-acl --bucket deepview-explorer-public --key vscode-cloud-providers/providers.json --acl public-read
2 changes: 1 addition & 1 deletion skyline-vscode/react-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"scripts": {
"start": "react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"build": "GENERATE_SOURCEMAP=false react-scripts build && rm ./build/providers.json",
"test": "jest",
"eject": "react-scripts eject"
},
Expand Down
Loading