Skip to content

Commit

Permalink
Add build workflow for MacOSX
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonTian committed Aug 16, 2023
1 parent 3588d99 commit 4e10a5e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build_for_macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build for MacOSX

on:
release:
types: [published]

jobs:
build:
name: Build
runs-on: macos-12
env:
VERSION: ${{ github.ref }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- run: git branch
- run: GOOS=darwin GOARCH=amd64 go build -ldflags "-X 'github.com/aliyun/aliyun-cli/cli.Version=${cat ./version}'" -o out/aliyun.amd64 main/main.go

0 comments on commit 4e10a5e

Please sign in to comment.