Skip to content

Instantly share code, notes, and snippets.

@theowenyoung
Created September 28, 2020 06:27
Show Gist options
  • Save theowenyoung/572689eb953c98b24bfdf62581119ce4 to your computer and use it in GitHub Desktop.
Save theowenyoung/572689eb953c98b24bfdf62581119ce4 to your computer and use it in GitHub Desktop.
github action commit & push
git config user.name github-actions[bot]
git config user.email ithub-actions[bot]@users.noreply.github.com
git remote add origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{github.repository}}.git
git add .
git commit -m "chore: build"
git push
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment