Skip to content

Commit

Permalink
fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
killers78 committed Mar 13, 2024
1 parent 666ba23 commit 1074dcd
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/mdToHTML.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,19 @@ jobs:
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "GitHub Actions"
# Deploy to GitHub Pages
- name: Deploy to gh-pages
#- name: Deploy to gh-pages
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.WEBSITE_PAT }}
# publish_dir: www-temp # Directory where HTML files are stored
# publish_branch: gh-pages # Target branch to deploy your site
# keep_files: true # Set to false if you want to overwrite the existing content

# Deploy to GitHub Pages
- name: Deploy no GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.WEBSITE_PAT }}
deploy_key: ${{ secrets.WEBSITE_PAT }}
publish_dir: www-temp # Directory where HTML files are stored
publish_branch: gh-pages # Target branch to deploy your site
keep_files: true # Set to false if you want to overwrite the existing content

0 comments on commit 1074dcd

Please sign in to comment.