Skip to content

Commit 5601d09

Browse files
重构模板架构并更新至 TeXLive 2025 (#61)
* add: ctan config; merge .{sty,cls} to a new .cls file * fix: ctan github actions file * Update CTAN package and consolidate class file [skip ci] * update: tongjithesis.cls reconstructed with options * Update CTAN package and consolidate class file [skip ci] * update: documentation * Update CTAN package and consolidate class file [skip ci] * update: texlive version 2025 in CI * update: CI tex-live/setup-texlive-action@v3 link update * update: documentation, metadata, and CI workflow * fix: CI script * update: CI workflow for release, citation info update * fix: CI release * update: CI release * fix: wrong cross reference --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent c0ed764 commit 5601d09

19 files changed

+1586
-491
lines changed

.github/ci/texlive-win.profile

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/ci/texlive.profile

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/jekyll-gh-pages.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
22
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
33

4+
# Ensure only one deployment runs at a time
5+
concurrency:
6+
group: "pages"
7+
cancel-in-progress: false
8+
49
on:
510
# Runs on pushes targeting the default branch
611
push:
@@ -15,19 +20,16 @@ permissions:
1520
pages: write
1621
id-token: write
1722

18-
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19-
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20-
concurrency:
21-
group: "pages"
22-
cancel-in-progress: false
23+
# Concurrency is already defined above
2324

2425
jobs:
2526
# Build job
2627
build:
2728
runs-on: ubuntu-latest
29+
timeout-minutes: 15
2830
steps:
2931
- name: Checkout
30-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3133
- name: Setup Pages
3234
uses: actions/configure-pages@v5
3335
- name: Build with Jekyll
@@ -36,14 +38,15 @@ jobs:
3638
source: ./
3739
destination: ./_site
3840
- name: Upload artifact
39-
uses: actions/upload-pages-artifact@v3
41+
uses: actions/upload-pages-artifact@v4
4042

4143
# Deployment job
4244
deploy:
4345
environment:
4446
name: github-pages
4547
url: ${{ steps.deployment.outputs.page_url }}
4648
runs-on: ubuntu-latest
49+
timeout-minutes: 10
4750
needs: build
4851
steps:
4952
- name: Deploy to GitHub Pages

0 commit comments

Comments
 (0)