mirror of https://github.com/stelzo/typst.git
Add back release targets `aarch64-pc-windows-msvc` and `riscv64gc-unknown-linux-gnu` (#4821)
This commit is contained in:
parent
b85217ef14
commit
77b6c8481f
|
|
@ -25,6 +25,9 @@ jobs:
|
||||||
- target: armv7-unknown-linux-musleabi
|
- target: armv7-unknown-linux-musleabi
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
cross: true
|
cross: true
|
||||||
|
- target: riscv64gc-unknown-linux-gnu
|
||||||
|
os: ubuntu-latest
|
||||||
|
cross: true
|
||||||
- target: x86_64-apple-darwin
|
- target: x86_64-apple-darwin
|
||||||
os: macos-latest
|
os: macos-latest
|
||||||
cross: false
|
cross: false
|
||||||
|
|
@ -34,6 +37,9 @@ jobs:
|
||||||
- target: x86_64-pc-windows-msvc
|
- target: x86_64-pc-windows-msvc
|
||||||
os: windows-latest
|
os: windows-latest
|
||||||
cross: false
|
cross: false
|
||||||
|
- target: aarch64-pc-windows-msvc
|
||||||
|
os: windows-latest
|
||||||
|
cross: false
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
|
||||||
|
|
@ -83,5 +83,6 @@ pkg-url = "{ repo }/releases/download/v{ version }/typst-{ target }{ archive-suf
|
||||||
bin-dir = "typst-{ target }/typst{ binary-ext }"
|
bin-dir = "typst-{ target }/typst{ binary-ext }"
|
||||||
pkg-fmt = "txz"
|
pkg-fmt = "txz"
|
||||||
|
|
||||||
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
|
[package.metadata.binstall.overrides]
|
||||||
pkg-fmt = "zip"
|
x86_64-pc-windows-msvc = { pkg-fmt = "zip" }
|
||||||
|
aarch64-pc-windows-msvc = { pkg-fmt = "zip" }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue