summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-01-30 18:29:13 +0000
committerGitHub <noreply@github.com>2024-01-30 18:29:13 +0000
commitf6b541dbedcc3ae719dd3d1d0f889f2ca8e0f7d6 (patch)
tree17cc2e52d4a500dcaac2b416aefcf886bd859d87
parent8e520b1d722b03899e034f54942224537e0d2e96 (diff)
chore(ci): use github m1 for release builds (#1658)
-rw-r--r--.github/workflows/release.yaml2
-rw-r--r--.github/workflows/rust.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index d1e12483..f6e335bc 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -30,7 +30,7 @@ jobs:
- { 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: self-hosted , target: aarch64-apple-darwin }
+ - { os: macos-14 , target: aarch64-apple-darwin }
steps:
- name: Check for release
id: is-release
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 2870f8d6..bac5f02f 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -42,7 +42,7 @@ jobs:
run: cargo build --all --locked --release && strip target/release/atuin
unit-test:
- runs-on: [self-hosted, ARM64, macOS]
+ runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3