Skip to content

Commit

Permalink
Update file(s) "/.github" from "ZigRazor/CXXGraph"
Browse files Browse the repository at this point in the history
  • Loading branch information
ZigRazor committed Mar 7, 2024
1 parent 5991a29 commit 4f611d8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Copy_Action_On_WebSite_Branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
#paths-ignore:
#- '.github/**' # Ignore changes towards the .github directory
paths:
- '.github'
- '.github/**'
branches:
- master # Only trigger on the master branch

Expand All @@ -19,7 +19,7 @@ jobs:
with:
personal_token: ${{ secrets.PERSONAL_TOKEN }}
src_path: /.github
dst_path: /.github
dst_path: /
src_branch: master
dst_branch: WebSite
username: ZigRazor
Expand Down
15 changes: 11 additions & 4 deletions .github/workflows/deploy_site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,16 @@ jobs:
working-directory: ${{github.workspace}}/docusaurus
# Build your program with the given configuration
run: yarn build


- name: Identify to git
run: |
git config --local user.email "[email protected]"
git config --local user.name "ZigRazor"
- name: Deploy
working-directory: ${{github.workspace}}/docusaurus
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
env:
GIT_USER: ZigRazor
GIT_PASS: ${{ secrets.PERSONAL_TOKEN }}
run: yarn run deploy


0 comments on commit 4f611d8

Please sign in to comment.