push version #8

Merged
mattdimegs merged 51 commits from bugfix/code-change4john into main 2025-06-11 23:01:08 +00:00
Showing only changes of commit 1a40252670 - Show all commits

View file

@ -15,6 +15,15 @@ on:
description: An optional string to define which branch to checkout.
default: 'main'
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:
if: inputs.workflow_type != 'release'
environment: ${{ inputs.environments }}