Merge branch 'main' into bugfix/code-change4john

This commit is contained in:
Matt DiMeglio 2025-06-11 15:26:27 -04:00
commit 1a40252670

View file

@ -15,6 +15,15 @@ on:
description: An optional string to define which branch to checkout. description: An optional string to define which branch to checkout.
default: 'main' default: 'main'
jobs: jobs:
check-inputs:
runs-on: 'ubuntu-latest'
environment: ${{ inputs.environments }}
steps:
- name: Check secrets present
run: |
echo "User is set: ${{ secrets.DOCKERHUB_USER != '' }}"
echo "Token is set: ${{ secrets.DOCKERHUB_TOKEN != '' }}"
echo "Environment: ${{ inputs.environments }}"
build: build:
if: inputs.workflow_type != 'release' if: inputs.workflow_type != 'release'
environment: ${{ inputs.environments }} environment: ${{ inputs.environments }}