REDMAN11 / john

1 stars 0 forks source link

Workflow #1

Open REDMAN11 opened 2 years ago

REDMAN11 commented 2 years ago

 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.

 See: https://circleci.com/docs/2.0/orb-intro/

orbs:   ruby: circleci/ruby@0.1.2

 Define a job to be invoked later in a workflow.

 See: https://circleci.com/docs/2.0/configuration-reference/#jobs

jobs:   build:     docker:       - image: circleci/ruby:2.6.3-stretch-node     executor: ruby/default     steps:       - checkout       - run:           name: Which bundler?           command: bundle -v       - ruby/bundle-install

 Invoke jobs via workflows

 See: https://circleci.com/docs/2.0/configuration-reference/#workflows# 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.

 See: https://circleci.com/docs/2.0/orb-intro/

orbs:   ruby: circleci/ruby@0.1.2

 Define a job to be invoked later in a workflow.

 See: https://circleci.com/docs/2.0/configuration-reference/#jobs

jobs:   build:     docker:       - image: circleci/ruby:2.6.3-stretch-node     executor: ruby/default     steps:       - checkout       - run:           name: Which bundler?           command: bundle -v       - ruby/bundle-install

 Invoke jobs via workflows

 See: https://circleci.com/docs/2.0/configuration-reference/#workflowshttps://circleci.com/docs/2.0/orb-intro/https://circleci.com/docs/2.0/configuration-reference/#workflows

REDMAN11 commented 2 years ago

 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.

 See: https://circleci.com/docs/2.0/orb-intro/

orbs:   ruby: circleci/ruby@0.1.2

 Define a job to be invoked later in a workflow.

 See: https://circleci.com/docs/2.0/configuration-reference/#jobs

jobs:   build:     docker:       - image: circleci/ruby:2.6.3-stretch-node     executor: ruby/default     steps:       - checkout       - run:           name: Which bundler?           command: bundle -v       - ruby/bundle-install

 Invoke jobs via workflows

 See: https://circleci.com/docs/2.0/configuration-reference/#workflows