Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zcorpan committed Nov 21, 2024
1 parent 05ebcf2 commit 34ebbb8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,14 @@ jobs:
python3 -m pip install --upgrade pip
pip install -r requirements.txt
- name: Fetch and Check Out `gh-pages`
- name: Configure Git User
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
# Fetch and switch to `gh-pages`
git fetch origin gh-pages:gh-pages || git checkout --orphan gh-pages
- name: Fetch and Check Out `gh-pages`
run: |
git fetch origin gh-pages:gh-pages
git checkout gh-pages
- name: Rebase `gh-pages` onto `main` (if triggered by push to main)
Expand Down

0 comments on commit 34ebbb8

Please sign in to comment.