-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Todd Rinaldo
committed
Aug 29, 2024
1 parent
080d0c5
commit 43805eb
Showing
1 changed file
with
8 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,13 +37,11 @@ jobs: | |
git diff | ||
- name: push | ||
uses: github-actions-x/[email protected] | ||
with: | ||
github-token: ${{ secrets.DOCS_DEPLOY_TOKEN }} | ||
push-branch: 'docs' | ||
commit-message: 'Regenerate Documentation Website' | ||
force-add: 'true' | ||
force-push: 'true' | ||
files: docs/ | ||
name: GitHub Action | ||
email: [email protected] | ||
run: | | ||
git config --global user.name 'GitHub Action' | ||
git config --global user.email '[email protected]' | ||
git add docs/ | ||
git commit -m "Regenerate Documentation Website" | ||
git remote -v | ||
git branch -a | ||
git push --force https://${{ secrets.DOCS_DEPLOY_TOKEN }}@github.com/cpanel/elevate main:docs |