braboj is creating the pdf document #39
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: Build the website with a static site generator | |
| run-name: ${{ github.actor }} is creating the pdf document | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| Generate-PDF-file: | |
| # Set the job to run on Ubuntu | |
| runs-on: ubuntu-latest | |
| # Set up the job environment | |
| steps: | |
| # Checkout the repository | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| # Set up git user that will push the PDF file | |
| - name: Setup the git admin with push access | |
| run: | | |
| git config --global user.name "${{ github.actor }}" | |
| git config --global user.email "${{ github.actor }}@users.noreply.github.com" |