From 044434c6423174e6eb0dcec0c804cf22957c5651 Mon Sep 17 00:00:00 2001 From: Guillermo Date: Tue, 17 Feb 2026 16:10:17 +0000 Subject: [PATCH] New Worflow deploy --- .gitea/workflows/deploy.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/deploy.yaml diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..b50beab --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,21 @@ +name: Deploy solution + +on: + workflow_dispatch: + inputs: + domain: + description: 'Seleccione destino:' + required: true + default: 'demo.analytics.beyondcx.org' + tag: + description: 'Indique el tag/release' + required: true + default: 'latest' + + + +jobs: + log-the-inputs: + runs-on: ubuntu-latest + steps: + - run: echo "${{ inputs.domain }} con la imagen ${{ inputs.tag }}"