From 6300b4e724b012503d1acfc70514f329efaf2c67 Mon Sep 17 00:00:00 2001 From: ahmedgamalyousef Date: Mon, 29 Sep 2025 21:04:29 +0300 Subject: [PATCH] Creating first Workflow --- .github/workflows/cicd.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/cicd.yml diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml new file mode 100644 index 0000000..af3a748 --- /dev/null +++ b/.github/workflows/cicd.yml @@ -0,0 +1,18 @@ +name: my first workflow on GitPasha + +on: + push: + branches: [ main ] + +jobs: + my-first-job: + steps: + - name: say hello + run: echo "Hello World" + + - name: create files & directories + run: touch access.log + run: mkdir jemy + + - name: list files + run: ls -la \ No newline at end of file