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