summaryrefslogtreecommitdiff
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 682e344b..ae8dc448 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -10,14 +10,18 @@ env:
jobs:
macos:
- runs-on: macos-latest
+ runs-on: macos-11
steps:
- uses: actions/checkout@v2
+ - name: Install ARM target
+ run: rustup update && rustup target add aarch64-apple-darwin
- name: Test
run: cargo test --release
- - name: Make App
- run: make dmg
+ - name: Test ARM
+ run: cargo test --release --target=aarch64-apple-darwin
+ - name: Make DMG
+ run: make dmg-universal
- name: Upload Application
run: |
mv ./target/release/osx/Alacritty.dmg ./Alacritty-${GITHUB_REF##*/}.dmg