Replace named arg

This commit is contained in:
Nick Alteen
2023-09-01 14:36:35 -04:00
parent 137e75c6a6
commit f67457a744
3 changed files with 10 additions and 22 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
#!/bin/sh -l
# Use INPUT_<INPUT_NAME> to get the value of an input
GREETING="Hello, $INPUT_WHO_TO_GREET!"
GREETING="Hello, $1!"
# Use workflow commands to do things like set debug messages
echo "::notice file=entrypoint.sh,line=7::$GREETING"