This is an automated email from the ASF dual-hosted git repository.
apratim pushed a commit to branch circleci-project-setup
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb-site.git
The following commit(s) were added to refs/heads/circleci-project-setup by this
push:
new d65f3aa CircleCI Commit
d65f3aa is described below
commit d65f3aaf6f6df7b466d048681c019ec85af46f81
Author: Apratim Shukla <[email protected]>
AuthorDate: Wed May 22 17:16:28 2024 -0700
CircleCI Commit
---
.circleci/config.yml | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..d10fb04
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,44 @@
+# This config was automatically generated from your source code
+# Stacks detected: cicd:github-actions:.github/workflows,deps:node:.
+version: 2.1
+orbs:
+ node: circleci/node@5
+jobs:
+ build-node:
+ # Build node project
+ executor: node/default
+ steps:
+ - checkout
+ - node/install-packages:
+ pkg-manager: npm
+ - run:
+ command: npm run build
+ - run:
+ name: Create the ~/artifacts directory if it doesn't exist
+ command: mkdir -p ~/artifacts
+ # Copy output to artifacts dir
+ - run:
+ name: Copy artifacts
+ command: cp -R build dist public .output .next .docusaurus
~/artifacts 2>/dev/null || true
+ - store_artifacts:
+ path: ~/artifacts
+ destination: node-build
+ deploy:
+ # This is an example deploy job, not actually used by the workflow
+ docker:
+ - image: cimg/base:stable
+ steps:
+ # Replace this with steps to deploy to users
+ - run:
+ name: deploy
+ command: '#e.g. ./deploy.sh'
+ - run:
+ name: found github actions config
+ command: ':'
+workflows:
+ build:
+ jobs:
+ - build-node
+ # - deploy:
+ # requires:
+ # - build-node