We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc922fb commit 314f39cCopy full SHA for 314f39c
2 files changed
.github/workflows/publish.yml
@@ -21,10 +21,11 @@ jobs:
21
run: npm clean-install
22
- name: Run build
23
run: npm run build
24
- - uses: stefanzweifel/git-auto-commit-action@v4
+ - name: Deploy to gh-pages
25
+ uses: peaceiris/actions-gh-pages@v3
26
with:
- commit_message: Update github.io page
27
- branch: main
28
- file_pattern: docs/
29
- commit_user_name: cffinit
30
- push_options: '--force'
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: ./docs
+ user_name: 'cffinit[bot]'
+ user_email: 'cffinit[bot]@users.noreply.github.com'
31
+ commit_message: ':robot: Update github.io page'
.gitignore
@@ -32,3 +32,6 @@ yarn-error.log*
32
*.njsproj
33
*.sln
34
node_modules
35
+
36
+# Build files
37
+docs
0 commit comments