Add docker_action.yaml

This commit is contained in:
Hang Cui
2025-10-22 14:54:46 -07:00
parent 8ea1f8ad88
commit 7452612486
5 changed files with 60 additions and 29 deletions

View File

@@ -0,0 +1,15 @@
#!/bin/sh -l
# get the input parameter
echo "Arg received $1"
# list the working directory
echo "Workdir:"
ls -la
# get name and store it to name.txt
name=$1
echo "$name" > name.txt
# output processed-name to GITHUB_OUTPUT
echo "processed-name=$name" >> $GITHUB_OUTPUT