File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 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 : |
You can’t perform that action at this time.
0 commit comments