2024-07-04 14:16:28 +00:00
|
|
|
name: release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-07-04 14:20:33 +00:00
|
|
|
- name: Install Typst CLI
|
|
|
|
run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION"
|
2024-07-05 12:50:31 +00:00
|
|
|
- name: Set up Python 3
|
2024-07-05 13:06:11 +00:00
|
|
|
run: apt update -y && apt install python3-pip -y
|
2024-07-04 14:20:33 +00:00
|
|
|
- name: Run CI
|
|
|
|
run: bash -c ./run-ci.sh
|
2024-07-04 14:29:12 +00:00
|
|
|
- name: Setup go
|
|
|
|
uses: https://github.com/actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version: '>=1.20.1'
|
2024-07-04 14:16:28 +00:00
|
|
|
- name: Create release
|
|
|
|
id: create-release
|
|
|
|
uses: https://gitea.com/actions/release-action@main
|
|
|
|
with:
|
|
|
|
files: |-
|
|
|
|
example.pdf
|
|
|
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|