5 lines
139 B
Bash
5 lines
139 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
cat "Hello from gCube Actions" > new_file.txt
|
||
|
git add new_file.txt
|
||
|
git commit -m "Add new_file.txt from gCube Actions"
|