summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLucy <lucy@absolucy.moe>2022-11-04 04:40:03 -0400
committerGitHub <noreply@github.com>2022-11-04 08:40:03 +0000
commit6bd82abf6c7ee7f615e953892182555ff5b49821 (patch)
treec8a0f1952f6fea0ead5fd31d7d6d8024bdc2f434 /.github
parentee89129c2b31c00046773b6d304c56cbfeaa5afa (diff)
Build ARM64 releases & update runners (#593)
Not entirely sure how to test this workflow. Why weren't ARM64 builds being made anyways? The workflow literally has cases to handle it! Fixes https://github.com/ellie/atuin/issues/369
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yaml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 551517b16..31ed58347 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -21,8 +21,10 @@ jobs:
fail-fast: false
matrix:
job:
- - { os: ubuntu-18.04 , target: x86_64-unknown-linux-gnu }
- - { os: macos-10.15 , target: x86_64-apple-darwin }
+ - { os: ubuntu-20.04 , target: x86_64-unknown-linux-gnu }
+ - { os: ubuntu-20.04 , target: aarch64-unknown-linux-gnu }
+ - { os: macos-12 , target: x86_64-apple-darwin }
+ - { os: macos-12 , target: aarch64-apple-darwin }
steps:
- name: Checkout source code
uses: actions/checkout@v2