diff --git a/.github/workflows/inputs.yaml b/.github/workflows/inputs.yaml index 7d268fc..7e5096f 100644 --- a/.github/workflows/inputs.yaml +++ b/.github/workflows/inputs.yaml @@ -26,15 +26,16 @@ jobs: log-the-inputs: runs-on: ubuntu-latest steps: - - run: | - echo "Debug: ${DEBUG}" - echo "Port: ${PORT}" - echo "Period: ${PERIOD}" + - name: print + env: + DEBUG: ${{ inputs.daemon_debug }} + PORT: ${{ inputs.daemon_port }} + PERIOD: ${{ inputs.execution_period }} + run: | + echo "Debug: ${DEBUG}" + echo "Port: ${PORT}" + echo "Period: ${PERIOD}" - echo "Debug: ${{ inputs.daemon_debug }} - echo "Port: ${{ inputs.daemon_port }} - echo "Period: ${{ inputs.execution_period }} - env: - DEBUG: ${{ inputs.daemon_debug }} - PORT: ${{ inputs.daemon_port }} - PERIOD: ${{ inputs.execution_period }} + echo "Debug: ${{ inputs.daemon_debug }} + echo "Port: ${{ inputs.daemon_port }} + echo "Period: ${{ inputs.execution_period }}