Skip to content

Commit 62f4d06

Browse files
committed
Updated config.yml
1 parent c40d85e commit 62f4d06

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.circleci/config.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# Use the latest 2.1 version of CircleCI pipeline process engine.
2-
# See: https://circleci.com/docs/configuration-reference
31
version: 2.1
2+
executors:
3+
my-custom-executor:
4+
docker:
5+
- image: cimg/base:stable
6+
auth:
7+
# ensure you have first added these secrets
8+
# visit app.circleci.com/settings/project/github/Dargon789/Rabby/environment-variables
9+
username: $DOCKER_HUB_USER
10+
password: $DOCKER_HUB_PASSWORD
11+
jobs:
12+
my-job-name:
413

5-
# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects.
6-
# See: https://circleci.com/docs/orb-intro/
7-
orbs:
8-
# See the Node orb documentation here: https://circleci.com/developer/orbs/orb/circleci/node
9-
node: circleci/node@5.2
14+
executor: my-custom-executor
15+
steps:
16+
- checkout
17+
- run: |
18+
# echo Hello, World!
1019
11-
# Orchestrate jobs using workflows
12-
# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows
1320
workflows:
14-
sample: # This is the name of the workflow, feel free to change it to better match your workflow.
15-
# Inside the workflow, you define the jobs you want to run.
21+
my-custom-workflow:
1622
jobs:
17-
- node/test:
18-
# This is the node version to use for the `cimg/node` tag
19-
# Relevant tags can be found on the CircleCI Developer Hub
20-
# https://circleci.com/developer/images/image/cimg/node
21-
version: '16.10'
22-
# If you are using yarn, change the line below from "npm" to "yarn"
23-
pkg-manager: npm
23+
- my-job-name

0 commit comments

Comments
 (0)