ci/fix-release-artifacts (#93)
Release-As: v0.5.3 Reviewed-on: #93 Co-authored-by: servostar <sven.vogel123@web.de> Co-committed-by: servostar <sven.vogel123@web.de>
This commit is contained in:
parent
4bb731ca66
commit
b0fc412b57
|
@ -1,10 +1,12 @@
|
||||||
name: Build'n check
|
name: Build'n check
|
||||||
run-name: Performing Typst compilation
|
run-name: Performing Typst compilation
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
types:
|
||||||
- main
|
- opened
|
||||||
|
- synchronize
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
jobs:
|
jobs:
|
||||||
run-ci-linux:
|
run-ci-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -12,8 +14,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
|
||||||
|
|
|
@ -28,7 +28,7 @@ jobs:
|
||||||
nix-shell --run ./run-ci.sh
|
nix-shell --run ./run-ci.sh
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
id: artifact-upload
|
id: artifact-upload
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: example-document
|
name: example-document
|
||||||
path: ${{ github.workspace }}/example.pdf
|
path: ${{ github.workspace }}/example.pdf
|
||||||
|
@ -51,7 +51,7 @@ jobs:
|
||||||
go-version: '>=1.20.1'
|
go-version: '>=1.20.1'
|
||||||
- name: Download Artifact
|
- name: Download Artifact
|
||||||
id: download
|
id: download
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: example-document
|
name: example-document
|
||||||
path: ${{ github.workspace }}/Example.pdf
|
path: ${{ github.workspace }}/Example.pdf
|
||||||
|
|
|
@ -9,5 +9,6 @@ pkgs.mkShellNoCC {
|
||||||
python312Packages.pyyaml
|
python312Packages.pyyaml
|
||||||
typst
|
typst
|
||||||
typstyle
|
typstyle
|
||||||
|
ripgrep
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -200,46 +200,49 @@ SOFTWARE.*/
|
||||||
#block(
|
#block(
|
||||||
below: 1.5em,
|
below: 1.5em,
|
||||||
width: 100%,
|
width: 100%,
|
||||||
par(hanging-indent: 1em, align(left)[
|
par(
|
||||||
#text(weight: "bold", entry.short)
|
hanging-indent: 1em,
|
||||||
#if hasLong and hasDesc [
|
align(left)[
|
||||||
(#text(entry.long))
|
#text(weight: "bold", entry.short)
|
||||||
] else if hasLong {
|
#if hasLong and hasDesc [
|
||||||
text(entry.long)
|
(#text(entry.long))
|
||||||
}
|
] else if hasLong {
|
||||||
#if hasDesc [ #sym.dash.en ]
|
text(entry.long)
|
||||||
#if hasDesc [ #desc ]
|
}
|
||||||
#if disable-back-references != true {
|
#if hasDesc [ #sym.dash.en ]
|
||||||
term_references
|
#if hasDesc [ #desc ]
|
||||||
.map(x => x.location())
|
#if disable-back-references != true {
|
||||||
.sorted(key: x => x.page())
|
term_references
|
||||||
.fold(
|
.map(x => x.location())
|
||||||
(values: (), pages: ()),
|
.sorted(key: x => x.page())
|
||||||
((values, pages), x) => if pages.contains(
|
.fold(
|
||||||
x.page(),
|
(values: (), pages: ()),
|
||||||
) {
|
((values, pages), x) => if pages.contains(
|
||||||
(values: values, pages: pages)
|
x.page(),
|
||||||
} else {
|
) {
|
||||||
values.push(x)
|
(values: values, pages: pages)
|
||||||
pages.push(x.page())
|
} else {
|
||||||
(values: values, pages: pages)
|
values.push(x)
|
||||||
},
|
pages.push(x.page())
|
||||||
)
|
(values: values, pages: pages)
|
||||||
.values
|
},
|
||||||
.map(x => {
|
)
|
||||||
let page-numbering = x.page-numbering()
|
.values
|
||||||
if page-numbering == none {
|
.map(x => {
|
||||||
page-numbering = "1"
|
let page-numbering = x.page-numbering()
|
||||||
|
if page-numbering == none {
|
||||||
|
page-numbering = "1"
|
||||||
|
}
|
||||||
|
link(x)[#numbering(
|
||||||
|
page-numbering,
|
||||||
|
..counter(page).at(x),
|
||||||
|
)]
|
||||||
}
|
}
|
||||||
link(x)[#numbering(
|
)
|
||||||
page-numbering,
|
.join(", ")
|
||||||
..counter(page).at(x),
|
}
|
||||||
)]
|
],
|
||||||
}
|
),
|
||||||
)
|
|
||||||
.join(", ")
|
|
||||||
}
|
|
||||||
]),
|
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue