From a3debab7280615e12f86e5789ae56409b7412fe7 Mon Sep 17 00:00:00 2001 From: Guams Date: Wed, 2 Sep 2026 22:30:24 +0200 Subject: [PATCH] add: first CI/CD script --- .gitea/workflows/deploy.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/deploy.yml diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..3bc1d8a --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,17 @@ +name: Deployment CI/CD +on: [push] + +jobs: + test-job: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [18.x] + steps: + - name: Checkout repository code + uses: https://gitea.com/actions/checkout@v4 + with: + ref: 'main' + + - name: Message de confirmation + run: ls -a \ No newline at end of file