Update resume π #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Resume | |
run-name: Update resume π | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
update_resume: | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt-get install poppler-utils | |
- uses: actions/checkout@v4 | |
- run: python createImage.py | |
- run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "sonnguyenHT" | |
git add . | |
git commit -m "Update resume" | |
git push origin main | |