Some checks failed
Continuous Integration / container (push) Failing after 0s
Continuous Integration / Docker Tests (push) Failing after 1s
Continuous Integration / GitHub Actions Test (push) Failing after 1s
Lint Codebase / Lint Codebase (push) Failing after 2s
/ A job to say hello (push) Failing after 1s
13 lines
258 B
Bash
Executable File
13 lines
258 B
Bash
Executable File
#!/bin/sh -l
|
|
|
|
# Use INPUT_<INPUT_NAME> to get the value of an input
|
|
GREETING="Hello, $INPUT_WHO_TO_GREET!"
|
|
|
|
# Use workflow commands to do things like set debug messages
|
|
echo "$GREETING"
|
|
|
|
# Write outputs to the $GITHUB_OUTPUT file
|
|
echo "time=$(date)"
|
|
|
|
exit 0
|