From bf1cf517d30cb58d239cd6d3ab81d0622df4483c Mon Sep 17 00:00:00 2001 From: oonyeje Date: Wed, 5 Mar 2025 07:19:51 -0500 Subject: [PATCH] - debug comments to test workflow --- .../workflows/manual_deploy_to_coolify.yaml | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.gitea/workflows/manual_deploy_to_coolify.yaml b/.gitea/workflows/manual_deploy_to_coolify.yaml index f6198b4..2974bac 100644 --- a/.gitea/workflows/manual_deploy_to_coolify.yaml +++ b/.gitea/workflows/manual_deploy_to_coolify.yaml @@ -4,21 +4,21 @@ on: push: branches: - Setup-Basic-Website - workflow_dispatch: - inputs: - image_tag: - description: 'Built Container Image to deploy' - required: false - default: 'latest' - type: string - environment: - description: 'Coolify Environment to deploy to' - required: false - type: choice - default: 'staging' - options: - - staging - - production + # workflow_dispatch: + # inputs: + # image_tag: + # description: 'Built Container Image to deploy' + # required: false + # default: 'latest' + # type: string + # environment: + # description: 'Coolify Environment to deploy to' + # required: false + # type: choice + # default: 'staging' + # options: + # - staging + # - production jobs: deploy: @@ -31,6 +31,6 @@ jobs: with: endpoint: ${{ secrets.COOLIFY_ENDPOINT }} token: ${{ secrets.COOLIFY_TOKEN }} - app_uuid: ${{ (contains(github.event.inputs.environment, 'staging') && secrets.COOLIFY_APP_STAGING_UUID) || secrets.COOLIFY_APP_PRODUCTION_UUID }} + app_uuid: ${{ secrets.COOLIFY_APP_STAGING_UUID }} # ${{ (contains(github.event.inputs.environment, 'staging') && secrets.COOLIFY_APP_STAGING_UUID) || secrets.COOLIFY_APP_PRODUCTION_UUID }} image_name: 'gitea.bsidesolutions.net/oonyeje/oonyeje-portfolio' - image_tag: ${{ github.event.inputs.image_tag }} \ No newline at end of file + image_tag: dev # ${{ github.event.inputs.image_tag }} \ No newline at end of file