Skip to content

Commit

Permalink
fix: configure Git credentials for GitHub Actions and update document…
Browse files Browse the repository at this point in the history
…ation deployment step
  • Loading branch information
jjjermiah committed Nov 29, 2024
1 parent d9d1fd0 commit adf4e04
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
- name: Install Pixi
uses: prefix-dev/[email protected]
Expand All @@ -92,9 +97,13 @@ jobs:
cache: true
locked: false # wont be the same because of the tag

- name: Test docs build
run: |
pixi run -e ${{ matrix.env }} doc-build
- name: Publish docs using mike
run: |
pixi run -e ${{ matrix.env }} mike deploy --push --update-aliases dev latest
pixi run -e ${{ matrix.env }} mike deploy --push dev devel
################################################################################################
Expand Down

0 comments on commit adf4e04

Please sign in to comment.