Compare commits
10 Commits
main
...
ci/gitea-r
Author | SHA1 | Date |
---|---|---|
Sven Vogel | cc4d217547 | |
Sven Vogel | 84af717ce7 | |
Sven Vogel | c961dacf96 | |
Sven Vogel | c819704b49 | |
Sven Vogel | 6695c5e204 | |
Sven Vogel | fe9fa2e614 | |
Sven Vogel | e77de7aec5 | |
Sven Vogel | 1567c6212c | |
Sven Vogel | 5dece112cb | |
Sven Vogel | 4c55b9cc7f |
|
@ -1,13 +1,7 @@
|
||||||
name: Build'n check
|
name: Build'n check
|
||||||
run-name: Performing Typst compilation
|
run-name: Performing Typst compilation
|
||||||
on:
|
on:
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
push:
|
push:
|
||||||
branches-ignore:
|
|
||||||
- main
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run-ci-linux:
|
run-ci-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -15,8 +9,7 @@ jobs:
|
||||||
# push with commit containing "Run-Checks"
|
# push with commit containing "Run-Checks"
|
||||||
if: >
|
if: >
|
||||||
(contains(github.event.head_commit.message, 'Run-Checks') &&
|
(contains(github.event.head_commit.message, 'Run-Checks') &&
|
||||||
github.event_name == 'push') ||
|
github.event_name == 'push')
|
||||||
github.event_name == 'pull_request'
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
name: Create Release Commit
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
tags-ignore:
|
|
||||||
- v*.*.*
|
|
||||||
jobs:
|
|
||||||
prepare:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: contains(github.event.head_commit.message, 'Release-As:')
|
|
||||||
env:
|
|
||||||
USERNAME: servostar
|
|
||||||
EMAIL: sven.vogel123@web.de
|
|
||||||
steps:
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
ref: 'main'
|
|
||||||
token: ${{ secrets.RELEASE_TOKEN }}
|
|
||||||
- name: Tag Release Commit
|
|
||||||
env:
|
|
||||||
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
|
|
||||||
GIT_AUTH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
|
||||||
run: |
|
|
||||||
export VERSION=$(echo "${COMMIT_MESSAGE}" | grep -Po '(?<=Release-As: )v\d+\.\d+\.\d+')
|
|
||||||
git config --global user.name "${USERNAME}"
|
|
||||||
git config --global user.email "${EMAIL}"
|
|
||||||
echo "==> Update typst.toml version"
|
|
||||||
sed -i "/version/c\version = \"${VERSION#v}\"" typst.toml
|
|
||||||
git add typst.toml
|
|
||||||
git commit -m "chore: bump release version to $VERSION" -m "Generated-By: ${{ gitea.actor }}"
|
|
||||||
git push origin main
|
|
||||||
echo "::endgroup::"
|
|
||||||
echo "::group::{Tag commit}"
|
|
||||||
git tag -m "Release" "${VERSION}"
|
|
||||||
git push origin "${VERSION}"
|
|
||||||
echo "::endgroup::"
|
|
|
@ -1,8 +1,10 @@
|
||||||
name: Create Release
|
name: Build'n check
|
||||||
on:
|
on:
|
||||||
push:
|
pull_request:
|
||||||
tags:
|
branches:
|
||||||
- 'v[0-9]+.[0-9]+.[0-9]+'
|
- main
|
||||||
|
types:
|
||||||
|
- closed
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Check Template and Build example
|
name: Check Template and Build example
|
||||||
|
@ -37,6 +39,9 @@ jobs:
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: build
|
||||||
|
if: contains(github.event.head_commit.message, 'Release-As:')
|
||||||
|
env:
|
||||||
|
USERNAME: servostar
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -54,6 +59,14 @@ jobs:
|
||||||
run: echo ${{ steps.download.outputs.download-path }}
|
run: echo ${{ steps.download.outputs.download-path }}
|
||||||
- name: Prepare Release
|
- name: Prepare Release
|
||||||
run: echo ${{ github.sha }} > Release.txt
|
run: echo ${{ github.sha }} > Release.txt
|
||||||
|
- name: Tag Release Commit
|
||||||
|
run: |
|
||||||
|
echo ${{github.event.head_commit.message}} | grep -Po '(?<=Release-As: )v\d+\.\d+\.\d+' > Version.txt
|
||||||
|
echo "==> Tagging for version: $(cat Version.txt)"
|
||||||
|
git config --global credential.helper store
|
||||||
|
echo "https://${USERNAME}:${{secrets.RELEASE_TOKEN}}}@${{github.repositoryUrl}}" > ~/.git-credentials
|
||||||
|
git tag -m "Release" $(cat Version.txt)
|
||||||
|
git push ${{github.repositoryUrl}} $(cat Version.txt)
|
||||||
- name: Create release
|
- name: Create release
|
||||||
id: create-release
|
id: create-release
|
||||||
uses: https://gitea.com/actions/release-action@main
|
uses: https://gitea.com/actions/release-action@main
|
||||||
|
@ -61,5 +74,6 @@ jobs:
|
||||||
files: |-
|
files: |-
|
||||||
Example.pdf
|
Example.pdf
|
||||||
Release.txt
|
Release.txt
|
||||||
|
Version.txt
|
||||||
LICENSE
|
LICENSE
|
||||||
api_key: '${{secrets.RELEASE_TOKEN}}'
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
# Contributing
|
|
||||||
|
|
||||||
Development of this template happens at
|
|
||||||
[git.montehaselino.de](https://git.montehaselino.de/DHBW/dhbw-abb-typst-template).
|
|
||||||
For this reason pull request opened at any mirror such as on GitHub, will not be
|
|
||||||
merged as this would compromise the push mirror.
|
|
||||||
|
|
||||||
Pull requests shall be opened exclusively in the official
|
|
||||||
[repository](https://git.montehaselino.de/DHBW/dhbw-abb-typst-template).
|
|
||||||
Issues may be created at GitHub or the official repository.
|
|
||||||
Beware, that linked pull requests and issues in commits messages refer to those
|
|
||||||
in the official instance and may be broken or invalid on mirrors such as GitHub.
|
|
||||||
|
|
||||||
Direct pushes to the `main` branch are discouraged. In order to make a change
|
|
||||||
create a new pull request and wait for a maintainer to merge it. Note that in
|
|
||||||
order to be able to merge, the continuous integration pipeline must run
|
|
||||||
successfully.
|
|
|
@ -2,7 +2,7 @@
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<h1>DHBW-ABB template for Typst</h1>
|
<h1>DHBW-ABB template for Typst</h1>
|
||||||
<img src="https://img.shields.io/gitea/last-commit/dhbw/dhbw-abb-typst-template?gitea_url=https%3A%2F%2Fgit.montehaselino.de">
|
<img src="https://img.shields.io/gitea/last-commit/dhbw/dhbw-abb-typst-template?gitea_url=https%3A%2F%2Fgit.montehaselino.de">
|
||||||
<img src="https://img.shields.io/github/actions/workflow/status/Servostar/dhbw-abb-typst-template/release.yml?label=build">
|
<img src="https://img.shields.io/github/actions/workflow/status/Servostar/dhbw-abb-typst-template/ci.yml?label=build">
|
||||||
<img src="https://img.shields.io/gitea/v/release/dhbw/dhbw-abb-typst-template?gitea_url=https%3A%2F%2Fgit.montehaselino.de&display_name=release">
|
<img src="https://img.shields.io/gitea/v/release/dhbw/dhbw-abb-typst-template?gitea_url=https%3A%2F%2Fgit.montehaselino.de&display_name=release">
|
||||||
<img src="https://img.shields.io/badge/license-MIT-ff0000">
|
<img src="https://img.shields.io/badge/license-MIT-ff0000">
|
||||||
<img src="https://img.shields.io/badge/Typst-2B9CB0">
|
<img src="https://img.shields.io/badge/Typst-2B9CB0">
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
name: "dualen Hochschule Baden-Württemberg",
|
name: "dualen Hochschule Baden-Württemberg",
|
||||||
campus: "Eppelheim"
|
campus: "Eppelheim"
|
||||||
),
|
),
|
||||||
supervisor-signature: false,
|
|
||||||
authors: (
|
authors: (
|
||||||
(
|
(
|
||||||
name: "Sven Vogel",
|
name: "Sven Vogel",
|
||||||
|
|
16
src/lib.typ
16
src/lib.typ
|
@ -122,27 +122,17 @@
|
||||||
|
|
||||||
#metadata("content terminate") <end-of-content>
|
#metadata("content terminate") <end-of-content>
|
||||||
|
|
||||||
#end_styled(
|
#end_styled(config)[
|
||||||
config,
|
|
||||||
context [
|
|
||||||
// add bibliography if set
|
// add bibliography if set
|
||||||
#if "bibliography" in config.thesis and config.thesis.bibliography != none {
|
#if "bibliography" in config.thesis and config.thesis.bibliography != none {
|
||||||
pagebreak(weak: true)
|
pagebreak(weak: true)
|
||||||
counter(page).update(1)
|
counter(page).update(1)
|
||||||
set bibliography(
|
set bibliography(style: "ieee")
|
||||||
style: "ieee",
|
|
||||||
title: if (text.lang == "de") {
|
|
||||||
"Literaturverzeichnis"
|
|
||||||
} else if text.lang == "en" {
|
|
||||||
"Bibliography"
|
|
||||||
},
|
|
||||||
)
|
|
||||||
config.thesis.bibliography
|
config.thesis.bibliography
|
||||||
}
|
}
|
||||||
|
|
||||||
// appendix
|
// appendix
|
||||||
#show-appendix(config: config)
|
#show-appendix(config: config)
|
||||||
],
|
]
|
||||||
)
|
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
|
|
@ -147,8 +147,7 @@
|
||||||
#context panic("no translation for language: ", text.lang)
|
#context panic("no translation for language: ", text.lang)
|
||||||
]
|
]
|
||||||
|
|
||||||
#if config.supervisor-signature {
|
#align(
|
||||||
align(
|
|
||||||
bottom,
|
bottom,
|
||||||
grid(
|
grid(
|
||||||
// set width of columns
|
// set width of columns
|
||||||
|
@ -164,7 +163,6 @@
|
||||||
),
|
),
|
||||||
align(right, {line(length: 6cm)})),
|
align(right, {line(length: 6cm)})),
|
||||||
)
|
)
|
||||||
}
|
|
||||||
|
|
||||||
#counter(page).update(0)
|
#counter(page).update(0)
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "dhbw-abb-typst-template"
|
name = "dhbw-abb-typst-template"
|
||||||
version = "0.5.4"
|
version = "0.4.1"
|
||||||
entrypoint = "src/template.typ"
|
entrypoint = "src/template.typ"
|
||||||
authors = ["Sven Vogel <sven.vogel1@de.abb.com>"]
|
authors = ["Sven Vogel <sven.vogel1@de.abb.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
Loading…
Reference in New Issue