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

ci: add step to check build directory files #1299

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
ci: add step to check build directory files
  • Loading branch information
daviderli614 committed Nov 19, 2024
commit c5afafe55de5a2a4988278b663bde2ef1e1bdfb9
6 changes: 6 additions & 0 deletions .github/workflows/addDocsToS3BucketAWS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
cache: 'pnpm'
- run: pnpm install
- run: DOC_LANG=zh pnpm build

- name: Check the build file
shell: bash
run: |
ls -lhR ./build

- name: Upload to S3
run: |
aws s3 sync ./build s3://greptime-document-bucket --delete
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,9 @@
node_modules
build
.envrc

# editor and IDE paraphernalia
.idea
*.swp
*.swo
*~
Loading