Skip to content

Commit

Permalink
Added darwin-amd64 support (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
cin authored Mar 24, 2023
1 parent 98a52f9 commit a64f7c2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 19 deletions.
23 changes: 6 additions & 17 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,28 +30,17 @@ jobs:
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o k8s-parallel-exec-linux-amd64

- name: Go Build linux/arm64
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o k8s-parallel-exec-linux-arm64
run: CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o k8s-parallel-exec-linux-arm64

- name: Go Build darwin/amd64
run: CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o k8s-parallel-exec-darwin-amd64

- name: Go Build darwin/arm64
run: CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o k8s-parallel-exec-darwin-arm64

- name: Publish k8s-parallel-exec to linux/amd64 assets
uses: skx/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: './k8s-parallel-exec-linux-amd64'

- name: Publish k8s-parallel-exec to linux/arm64 assets
uses: skx/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: './k8s-parallel-exec-linux-arm64'

- name: Publish k8s-parallel-exec to darwin/arm64 assets
- name: Publish k8s-parallel-exec builds to assets
uses: skx/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: './k8s-parallel-exec-darwin-arm64'
args: './k8s-parallel-exec-*'
2 changes: 0 additions & 2 deletions logo.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Logo

```
Create a modern and dynamic logo for the k8s-parallel-exec project that represents the essence of parallel command execution in Kubernetes clusters. The design should feature a stylized version of the Kubernetes logo, with multiple arrows branching out from the central hexagon, symbolizing parallelism and efficient distribution of tasks. Incorporate vibrant colors, such as bright cyan or green, to evoke a sense of speed and agility. Overlay the arrows with a subtle command line terminal icon to emphasize the CLI aspect of the tool. The project name "k8s-parallel-exec" should be displayed in a bold, contemporary font beneath the main logo.
```

0 comments on commit a64f7c2

Please sign in to comment.