hotfix: fixes broken deploy

This commit is contained in:
2025-11-01 22:03:58 -03:00
parent 4f6d03adda
commit 28eb91b4e4

View File

@@ -83,7 +83,15 @@ jobs:
needs: [docker] needs: [docker]
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main') if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
environment: 'production' environment: ${{ github.ref_name == 'main' && 'production' || 'dev' }}
env:
# Kubernetes Specific
KUBE_NAMESPACE: ${{ vars.KUBE_NAMESPACE }}
KUBE_DOMAIN: ${{ vars.KUBE_DOMAIN }}
WORKER_NODE_LABEL: ${{ vars.WORKER_NODE_LABEL }}
# Application Specific
BACKEND_URL: ${{ vars.BACKEND_URL }}
GH_USER: ${{ vars.GH_USER }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4