Skip to content

Commit

Permalink
Update and rename main.yml to build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mai-space authored Dec 31, 2023
1 parent f0db02d commit 5552f48
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 25 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build LaTeX Document and Move PDF

on:
push:
branches:
- '*'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Compile LateX
# You may pin to the exact commit or the version.
# uses: vinay0410/tectonic-action@b3138021657a3cdb3823f3980be054ca89e86d81
uses: antaljanosbenjamin/compile-latex@v1.0.0
with:
file: mai-joel_maximilian-curriculum_vitae.tex
output-directory: downloads/
args: -pdf
- run: '(test -f downloads/mai-joel_maximilian-curriculum_vitae.pdf && echo PDF exists) || (echo PDF does not exist && exit 1)'
- name: Create Release
id: create_release
uses: actions/create-release@v1
with:
files: |
downloads/mai-joel_maximilian-curriculum_vitae.pdf
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Release Asset
id: upload_release_asset
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: downloads/mai-joel_maximilian-curriculum_vitae.pdf
asset_name: mai-joel_maximilian-curriculum_vitae.pdf
asset_content_type: application/pdf
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25 changes: 0 additions & 25 deletions .github/workflows/main.yml

This file was deleted.

0 comments on commit 5552f48

Please sign in to comment.