5 lines
165 B
Bash
5 lines
165 B
Bash
|
#!/usr/bin/env bash
|
||
|
touch new_file4.txt
|
||
|
echo "Hello from gCube Actions 4" >> new_file4.txt
|
||
|
git add new_file4.txt
|
||
|
git commit -m "Add new_file4.txt from gCube Actions"
|