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 }}"