Skip to content

Commit

Permalink
first pass at mac binary build
Browse files Browse the repository at this point in the history
  • Loading branch information
david-crespo committed Apr 4, 2024
1 parent 9ebd1e9 commit 8c6e23f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: macOS binaries

on:
push:
branches: [main]
pull_request:

jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2

- run: cargo build -p mgd --release --no-default-features

- name: Upload mgd binary
uses: actions/upload-artifact@v4
with:
name: mgd-${{ github.sha }}
path: target/release/mgd

0 comments on commit 8c6e23f

Please sign in to comment.