Skip to content

Commit

Permalink
Update deploy_site.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ZigRazor authored Mar 7, 2024
1 parent 9897110 commit 5b92857
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/deploy_site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Configure Git
run: git config --global user.email "[email protected]" ; git config --global user.name "ZigRazor"

- name: Configure Yarn
working-directory: ${{github.workspace}}/docusaurus
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
Expand All @@ -24,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 5b92857

Please sign in to comment.