Skip to content

Commit

Permalink
Merge branch 'main' of github.com:carpentriesoffline/CW24_lightning_talk
Browse files Browse the repository at this point in the history
  • Loading branch information
jsteyn committed Apr 17, 2024
2 parents 7181a51 + c5061df commit 9536718
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/CW24_lightning_talk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,20 @@ jobs:
uses: xu-cheng/latex-action@v3
with:
root_file: cw24.tex
latexmk_use_lualatex: true
- name: Upload slide PDF file
uses: actions/upload-artifact@v4
with:
name: pdf
path: cw24.pdf
- name: Get timestamp
id: timestamp
run: echo "::set-output name=timestamp::$(date +'%Y%m%d%H%M%S')"
- name: Create tag
run: git tag -a v${{ steps.timestamp.outputs.timestamp }} -m "Version v${{ steps.timestamp.outputs.timestamp }}"
- name: Push tag
run: git push origin --tags
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: cw24.pdf

0 comments on commit 9536718

Please sign in to comment.