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 c16bf5a
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c16bf5a

Please sign in to comment.