44 lines
1.4 KiB
YAML
44 lines
1.4 KiB
YAML
name: "Release"
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
|
|
convert_via_pandoc:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout repository and submodules
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
- run: sudo apt install pandoc texlive-latex-extra
|
|
- run: wget https://github.com/jgm/pandoc/releases/download/3.1.7/pandoc-3.1.7-1-amd64.deb
|
|
- run: sudo dpkg -i pandoc-3.1.7-1-amd64.deb
|
|
- run: echo $PWD
|
|
- run: ls -al ./
|
|
- run: ls -al ../
|
|
- run: pdflatex -jobname=ZenCompetition-${{ github.ref_name }} ZenCompetition.tex
|
|
- run: ls -al .
|
|
- name: release
|
|
uses: actions/create-release@v1
|
|
id: create_release
|
|
with:
|
|
draft: false
|
|
prerelease: false
|
|
release_name: ${{ steps.get_version.outputs.VERSION }}
|
|
tag_name: ${{ github.ref }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
|
|
|
|
- name: Upload Keywords
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: ZenCompetition-${{ github.ref_name }}.pdf
|
|
asset_name: ZenCompetition-${{ github.ref_name }}.pdf
|
|
asset_content_type: application/binary
|