diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index b1d982b64..837bfc4f9 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -12,11 +12,21 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 + with: + persist-credentials: false + fetch-depth: 0 - name: Compile run: xelatex SergeyKambalin.tex + - name: Commit & Push changes + uses: actions-js/push@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + message: "Auto-compile CV: ${date}" + - uses: actions/upload-artifact@v4 + name: Upload CV with: name: SergeyKambalin path: ./SergeyKambalin.pdf \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 000000000..325834854 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Sergey Kambalin CV + +To compile the CV use the following command: + +```sh +sh ./compile.sh +```