Some checks failed
build-debian-package / Build the debian package (push) Failing after 31s
31 lines
887 B
YAML
31 lines
887 B
YAML
name: build-debian-package
|
|
on:
|
|
push:
|
|
tags:
|
|
- "doc-*"
|
|
|
|
jobs:
|
|
build:
|
|
name: Build the debian package
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: "Git clone"
|
|
run: git clone ${{ gitea.server_url }}/${{ gitea.repository }}.git .
|
|
- name: "Git checkout"
|
|
run: git checkout "${{ gitea.sha }}"
|
|
- name: "Submodules auschecken"
|
|
run: git submodule update --init
|
|
- uses: docker://git.kocoder.xyz/docker/ga-pandoc:24a15752b7c8f37f89f649f7c73c5be2aafbc8d2
|
|
with:
|
|
env: TEXINPUTS=.:./libs/awesome-beamer/:./libs/smile/
|
|
command: pandoc
|
|
args: "--help" # gets appended to pandoc command
|
|
- name: "Build .deb"
|
|
run: cd ./Defensio && ./pandoc.sh
|
|
- name: "Create release"
|
|
uses: akkuman/gitea-release-action@v1
|
|
with:
|
|
files: |-
|
|
./Defensio/defensio.pdf
|