Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixthrush authored Oct 25, 2023
1 parent 6a42ccc commit 264c7ad
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@ version: 2.1
jobs:
build:
docker:
- image: cimg/base:stable
- image: circleci/python:3.7

steps:
- checkout

- run:
name: Create hello.txt
command: echo "Hello, World!" > hello.txt

- run:
name: Commit changes
command: git add hello.txt
command: git commit -m "Add 'hello.txt' with 'Hello, World!'"
command: git push
workflows:
example:
jobs:
- build:
command: |
git config --global user.email "your.email@example.com"
git config --global user.name "Your Name"
git add hello.txt
git commit -m "Add 'hello.txt' with 'Hello, World!'"
git push

0 comments on commit 264c7ad

Please sign in to comment.