We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec8f6d commit 3fd8821Copy full SHA for 3fd8821
.github/workflows/release.yml
@@ -27,8 +27,11 @@ jobs:
27
macos: |
28
rustup target add x86_64-apple-darwin
29
cargo build --release --target x86_64-apple-darwin
30
+ rustup target add aarch64-apple-darwin
31
+ cargo build --release --target aarch64-apple-darwin
32
mkdir cfn-guard-v2-${{ matrix.os }}
- cp ./target/x86_64-apple-darwin/release/cfn-guard ./cfn-guard-v2-${{ matrix.os }}/
33
+ cargo install cargo-lipo
34
+ lipo -create target/x86_64-apple-darwin/release/cfn-guard target/aarch64-apple-darwin/release/cfn-guard -output ./cfn-guard-v2-${{ matrix.os }}/cfn-guard
35
cp README.md ./cfn-guard-v2-${{ matrix.os }}/
36
tar czvf ./cfn-guard-v2-${{ matrix.os }}.tar.gz ./cfn-guard-v2-${{ matrix.os }}
37
linux: |
0 commit comments