Skip to content

Commit

Permalink
Use my github action to automatically create resume.html
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsenasm authored Jan 20, 2022
1 parent 8f9efac commit 72cb9cf
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on: [push]

jobs:
pdf_to_html:
runs-on: ubuntu-latest
name: A job to convert pdf to html
steps:
- name: Checkout repo content
uses: actions/checkout@v2
- name: Convert PDF to HTML
id: hello
uses: mohsenasm/pdf2htmlEX-github-action@main
with:
zoom: '1.3'
filepath: 'resume.pdf'
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: 'latest'
files: resume.html

0 comments on commit 72cb9cf

Please sign in to comment.