Skip to content

Commit

Permalink
Attempt to use working GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
tomnieuwland committed Oct 13, 2021
1 parent 12fcda4 commit 108e9e8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,16 @@ jobs:
steps:
- name: Set up Git repository
uses: actions/checkout@v2
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Build Latex
uses: xu-cheng/latex-action@v2
with:
root_file: resume.tex
- name: Release
uses: softprops/action-gh-release@v1
uses: ncipollo/release-action@v1
with:
files: resume.pdf
artifacts: "resume.pdf"
tag: resume-${{ steps.date.outputs.date }}
token: ${{ secrets.GH_TOKEN }}

0 comments on commit 108e9e8

Please sign in to comment.