Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dimtsap authored Sep 15, 2023
1 parent 6ff5482 commit 3d2a229
Showing 1 changed file with 14 additions and 26 deletions.
40 changes: 14 additions & 26 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,33 +28,21 @@ jobs:
make -C docs clean
make -C docs html
- name: Init repo in dist folder and commit
run: |
cd docs/build/html/
git init
touch .nojekyll
git add -A
git config --local user.email "[email protected]"
git config --local user.name "Github Action"
git commit -m 'deploy'
- name: Push to GitHub Pages branch
# You may pin to the exact commit or the version.
# uses: ftnext/action-push-ghpages@621f3b2f1d34079b4da6051daedb3e200af0dd38
uses: ftnext/[email protected]
# - name: Init repo in dist folder and commit
# run: |
# cd docs/build/html/
# git init
# touch .nojekyll
# git add -A
# git config --local user.email "[email protected]"
# git config --local user.name "Github Action"
# git commit -m 'deploy'
- name: Upload GitHub Pages artifact
uses: actions/[email protected]
with:
# Path to the directory where the static assets are located.
build_dir: docs/build/html
# Specify GITHUB_TOKEN in your repository.
github_token: ${{secrets.GITHUB_TOKEN}}

# - name: Force push to destination branch
# uses: ad-m/[email protected]
# with:
# github_token: ${{secrets.GITHUB_TOKEN}}
# branch: gh-pages
# force: true
# directory: docs/build/html

# Path of the directory containing the static assets.
path: docs/build/html/




0 comments on commit 3d2a229

Please sign in to comment.