Skip to content

Commit

Permalink
adding darwin release automation
Browse files Browse the repository at this point in the history
  • Loading branch information
aveiga committed Oct 22, 2022
1 parent 6ae08ff commit 170ce64
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,19 @@ jobs:
name: release linux/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1.32
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1.32
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
release-darwin-arm64:
name: release darwin/arm64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1.32
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: darwin
goarch: arm64
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@
### Access the local RabbitMQ UI

- `http://localhost:15672`

## References
- [Cobra User Guide](https://github.com/spf13/cobra/blob/main/user_guide.md)
- [Cobra Generator](https://github.com/spf13/cobra-cli/blob/main/README.md)

0 comments on commit 170ce64

Please sign in to comment.