From ccca57eed4cf9cc4881ec7d9cd28270310ca46ba Mon Sep 17 00:00:00 2001 From: "marly.guerrero" Date: Tue, 25 Nov 2025 16:01:22 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20.gitea/workflows/demo.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/demo.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/demo.yaml diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml new file mode 100644 index 0000000..a15e9da --- /dev/null +++ b/.gitea/workflows/demo.yaml @@ -0,0 +1,25 @@ +name: Deploy demo +run-name: ${{ gitea.actor }} +on: [push] + +jobs: + Deploy: + runs-on: dagger + steps: + - name: Clone Devops Repo + uses: actions/checkout@v4 + with: + ref: main + repository: junior.bonilla/example_app + token: ${{ secrets.PIPELINEDEPLOY }} + path: devops + - name: Clone Code Repo + uses: actions/checkout@v4 + with: + fetch-depth: 0 + repository: junior.bonilla/example_app + token: ${{ secrets.PIPELINEDEPLOY }} + path: code + - name: Exec Pipeline + working-directory: ./devops + run: go run demo.go \ No newline at end of file