Update Dockerfile #18
This file contains hidden or 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: Move Resume PDF to docs/ | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| move-pdf: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Move PDF to docs folder | |
| run: | | |
| mkdir -p docs | |
| cp out/resume.pdf docs/resume.pdf | |
| - name: Commit and push changes | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add docs/resume.pdf | |
| git commit -m "Update resume.pdf in docs [CI skip]" || echo "No changes to commit" | |
| git push |