mirror of
https://github.com/kristoferssolo/Theory-of-Algorithms-Cheatsheet.git
synced 2025-10-21 20:10:39 +00:00
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
name: Release
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v[0-9]+.[0-9]+.[0-9]+*"
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Version number in the format `v1.2.3`'
|
|
required: true
|
|
type: string
|
|
permissions:
|
|
contents: write
|
|
packages: read
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Install Typst
|
|
uses: typst-community/setup-typst@v3
|
|
with:
|
|
typst-version: 0.13
|
|
cache-dependency-path: requirements.typ
|
|
- name: Compile Typst files
|
|
run: |
|
|
typst compile main.typ main.pdf
|
|
- name: Upload PDF file
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: PDF
|
|
path: "*.pdf"
|
|
- name: Get current date
|
|
id: date
|
|
run: echo "DATE=$(date +%Y-%m-%d-%H:%M)" >> $GITHUB_ENV
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v1
|
|
if: github.ref_type == 'tag'
|
|
with:
|
|
name: "${{ github.ref_name }} — ${{ env.DATE }}"
|
|
files: |
|
|
main.pdf
|