summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMax <me@mkor.je>2024-08-26 13:39:39 +0000
committerGitHub <noreply@github.com>2024-08-26 13:39:39 +0000
commit77b6c8481f234e40f261b42fa4a9d0294d3ca2a7 (patch)
tree576b69961ffa6f860f9be34b1e87df172758d163 /.github
parentb85217ef14e87e44e6d90711dd14d77eee5e8528 (diff)
Add back release targets `aarch64-pc-windows-msvc` and `riscv64gc-unknown-linux-gnu` (#4821)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 9add995b..0042f9bf 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -25,6 +25,9 @@ jobs:
- target: armv7-unknown-linux-musleabi
os: ubuntu-latest
cross: true
+ - target: riscv64gc-unknown-linux-gnu
+ os: ubuntu-latest
+ cross: true
- target: x86_64-apple-darwin
os: macos-latest
cross: false
@@ -34,6 +37,9 @@ jobs:
- target: x86_64-pc-windows-msvc
os: windows-latest
cross: false
+ - target: aarch64-pc-windows-msvc
+ os: windows-latest
+ cross: false
steps:
- uses: actions/checkout@v4