gCubeActionExecutor/actions/first.sh

6 lines
179 B
Bash
Raw Normal View History

2021-01-16 22:03:03 +01:00
#!/usr/bin/env bash
2021-01-24 05:01:22 +01:00
git rm new_file.txt
touch new_file.txt
echo "Hello from gCube Actions" >> new_file.txt
2021-01-16 22:03:03 +01:00
git add new_file.txt
git commit -m "Add new_file.txt from gCube Actions"