Skip to content

Commit 2e4e24c

Browse files
authored
Create config.yml (#759)
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
1 parent 0e8ef42 commit 2e4e24c

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.circleci /config.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Use the latest 2.1 version of CircleCI pipeline process engine.
2+
# See: https://circleci.com/docs/configuration-reference
3+
version: 2.1
4+
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+
aws-cli: circleci/aws-cli@2.0.3
9+
10+
# Orchestrate jobs using workflows
11+
# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows
12+
jobs:
13+
example-job:
14+
docker:
15+
# replace with your preferred image
16+
- image: cimg/base:stable
17+
steps:
18+
- aws-cli/setup
19+
workflows:
20+
example-workflow:
21+
jobs:
22+
- example-job

0 commit comments

Comments
 (0)