Skip to content

braboj is creating the pdf document #16

braboj is creating the pdf document

braboj is creating the pdf document #16

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"