Update .github/workflows/CD.yml
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
Build and Push Docker Image / testing (1.24.x, ubuntu-latest) (push) Has been cancelled

This commit is contained in:
2025-04-29 16:46:21 -04:00
parent 6b87fde7d1
commit 9058e3c6fc

View File

@ -3,13 +3,13 @@ name: Deploy Project
on:
workflow_dispatch:
inputs:
Version:
version:
description: Application Version
type: string
required: true
Env:
env:
description: Deployment Environment
type: environment
type: string
required: false
jobs:
@ -31,9 +31,9 @@ jobs:
steps:
# - uses: actions/checkout@v4
- name: Dump inputs context
env:
INPUTS_CONTEXT: ${{ toJson(inputs) }}
# - name: Dump inputs context
# env:
# INPUTS_CONTEXT: ${{ toJson(inputs) }}
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}