Skip to content

Commit 3ffc7c9

Browse files
committed
update debug workflow
1 parent 87293a0 commit 3ffc7c9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/debug.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
id: setup
1818
run: |
1919
git config --global init.defaultBranch main
20-
git config --global user.name "${{ secrets.BOT_NAME }}"
21-
git config --global user.email "${{ secrets.BOT_EMAIL }}"
2220
echo quarter="$(date +%Y)Q$(( ($(date +%-m)-1)/3+1 ))" \
2321
>> "${GITHUB_OUTPUT}"
2422
@@ -31,20 +29,22 @@ jobs:
3129
scripts/1-fetch
3230
token: ${{ secrets.BOT_TOKEN }}
3331

32+
- name: Configure git
33+
run: |
34+
git config user.name "${{ secrets.BOT_NAME }}"
35+
git config user.email "${{ secrets.BOT_EMAIL }}"
36+
3437
- name: Setup Python
3538
uses: actions/setup-python@v5
3639
with:
3740
python-version: '3.11'
3841

3942
- name: Install Python dependencies
4043
run: |
41-
echo "PYTHONPATH=./scripts" >> "${GITHUB_ENV}"
4244
pip install --upgrade pip
4345
pip install pipenv
4446
pipenv sync --system
45-
46-
# - name: Set PYTHONPATH
47-
# run: echo "PYTHONPATH=./scripts" >> "${GITHUB_ENV}"
47+
echo "PYTHONPATH=./scripts" >> "${GITHUB_ENV}"
4848
4949
- name: Fetch from Google Custom Search (GCS)
5050
run: |

0 commit comments

Comments
 (0)