From 23accdb27178bbd852c7eaa134454820acc3b6b7 Mon Sep 17 00:00:00 2001 From: Phoenixthrush UwU Date: Wed, 25 Oct 2023 11:33:17 +0200 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 36 ++++++++++-------------------------- 1 file changed, 10 insertions(+), 26 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7807004..68b6fc8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,32 +1,16 @@ -# Couldn't automatically generate a config from your source code. -# This is a generic template to serve as a base for your custom config -# See: https://circleci.com/docs/configuration-reference version: 2.1 jobs: - test: - docker: - - image: cimg/base:stable - steps: - - checkout - # Replace this with a real test runner invocation - - run: - name: Run tests - command: echo 'replace me with real tests!' build: - docker: - - image: cimg/base:stable steps: - checkout - # Replace this with steps to build a package, or executable + + - run: + name: Create hello.txt + command: echo "Hello, World!" > hello.txt + - run: - name: Build an artifact - command: touch example.txt - - store_artifacts: - path: example.txt -workflows: - example: - jobs: - - test - - build: - requires: - - test + name: Commit changes + command: | + git add hello.txt + git commit -m "Add 'hello.txt' with 'Hello, World!'" + git push