Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
skambalin committed May 6, 2024
1 parent 55c9aa9 commit d7051dd
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,39 @@ 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 config --local user.email "[email protected]"
git config --local user.name "Sergey Kambalin"
git commit -a -m "[skip ci] Auto-update 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
Expand Down

0 comments on commit d7051dd

Please sign in to comment.