Created
October 25, 2021 23:24
-
-
Save navarrothiago/b37002b7c02111722061f240338185d8 to your computer and use it in GitHub Desktop.
Update github workflow branch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
main() { | |
git commit -a -m "update ginkgo" | |
echo "teste" >> teste | |
git commit -a -m "test" | |
git push origin-private github-workflow:test-ci -f | |
git checkout HEAD~1 | |
git branch -d github-action | |
git switch -c github-action | |
git push accuknox-private github-action:github-workflow | |
git switch github-workflow | |
exit 0 | |
} | |
main "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment