Compare commits

...

5 Commits

Author SHA1 Message Date
Sven Vogel 8988ab1491 Merge pull request 'feature/github-workflow' (#33) from feature/github-workflow into main
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 30s Details
release / release (push) Successful in 1m4s Details
Reviewed-on: #33

Refs: #32
2024-07-19 07:47:34 +00:00
Sven Vogel e1dd12cdfd added release on tag github action
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 25s Details
2024-07-19 09:45:23 +02:00
Sven Vogel b827520692 added python setup action
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 26s Details
2024-07-19 09:36:48 +02:00
Sven Vogel cc56ccecd7 changed install path for typst
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 30s Details
2024-07-19 09:31:17 +02:00
Sven Vogel 8dc61c01fe added github workflow
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 29s Details
2024-07-19 09:23:39 +02:00
2 changed files with 52 additions and 0 deletions

20
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: GitHub Action for checking typst compilation
run-name: Performing Typst compilation
on: [push]
jobs:
run-ci-linux:
runs-on: ubuntu-latest
env:
TYPST_INSTALL: $HOME/.typst
TYPST_VERSION: 0.11.1
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install Typst CLI
run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION"
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run CI
run: export PATH="$TYPST_INSTALL/bin:$PATH" && bash -c ./run-ci.sh

32
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,32 @@
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: Create Release
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install Typst CLI
run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION"
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run CI
run: export PATH="$TYPST_INSTALL/bin:$PATH" && bash -c ./run-ci.sh
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false