From 3bda9fa38e83b0cfb478502f3c139ba6130b95e6 Mon Sep 17 00:00:00 2001 From: nurullah Date: Sat, 2 Aug 2025 22:52:23 +0600 Subject: [PATCH] ci cd added --- .gitea/workflows/hello.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/hello.yml diff --git a/.gitea/workflows/hello.yml b/.gitea/workflows/hello.yml new file mode 100644 index 0000000..c61fe2a --- /dev/null +++ b/.gitea/workflows/hello.yml @@ -0,0 +1,16 @@ +name: Hello Gitea Workflow + +on: + push: + branches: + - main + +jobs: + hello: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Say Hello + run: echo "👋 Hello from Gitea Actions!"