ooni-probe-cli/.github/workflows/macos.yml
Simone Basso 770a822fd4 fix(build.sh): name macOS files after the darwin platform
This was what we used to do in the past. Spotted by @sarathms.
2020-08-24 19:24:46 +02:00

21 lines
484 B
YAML

# Build and test macOS binary
name: macos
on:
push:
schedule:
- cron: "14 17 * * 3"
jobs:
build:
runs-on: "macos-latest"
steps:
- uses: actions/setup-go@v1
with:
go-version: "1.14"
- uses: actions/checkout@v2
- run: ./build.sh darwin
- run: ./smoketest.sh ./CLI/darwin/amd64/ooniprobe
- uses: actions/upload-artifact@v1
with:
name: ooniprobe-darwin-amd64
path: ./CLI/darwin/amd64/ooniprobe