diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 837bfc4f9..8f0c7b5e8 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -4,26 +4,36 @@ on: push: {} pull_request: {} +permissions: + contents: write + pull-requests: write + jobs: - build: + compile: + name: Compile CV runs-on: ubuntu-latest container: texlive/texlive:latest steps: - - name: Checkout repo - uses: actions/checkout@v4 + - uses: actions/checkout@master + name: Checkout repository with: - persist-credentials: false fetch-depth: 0 + - name: Change ownership + run: chown -R $(whoami) . + - name: Compile run: xelatex SergeyKambalin.tex - - name: Commit & Push changes - uses: actions-js/push@master + - name: Commit changes + run: git commit -a -m "Auto-compile CV" + + - name: Push changes + uses: ad-m/github-push-action@master with: github_token: ${{ secrets.GITHUB_TOKEN }} - message: "Auto-compile CV: ${date}" + branch: ${{ github.ref }} - uses: actions/upload-artifact@v4 name: Upload CV