Skip to content

Commit

Permalink
Merge pull request #1525 from google/EsoFromTheEast-patch-1
Browse files Browse the repository at this point in the history
Addressing feedback from last PR
  • Loading branch information
EsoFromTheEast authored Jun 6, 2023
2 parents 310f47c + 90a99ea commit 7c9a2c1
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,21 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f update/requirements.txt ]; then pip install -r update/requirements.txt; fi
pip install -r update/requirements.txt
- name: Run Update Script
working-directory: ./update
run: |
python update_symbols.py
- name: commit
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git add .
git commit -m "Update Symbols"
git diff --staged --quiet || git -c user.name='GitHub Actions Bot' -c user.email='<>' commit -m 'Update Symbols'
git push origin master

0 comments on commit 7c9a2c1

Please sign in to comment.