Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
tweak binary names (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
serain authored Sep 22, 2021
1 parent 3cb6e7e commit ba0e86b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
- name: Compile
working-directory: ./cmd
run: |
go build -o /tmp/gitoops-${{ env.GOOS }}-${{ env.GOARCH }} .
go build -o /tmp/gitoops-linux .
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.TAG }}
files: |
/tmp/gitoops-${{ env.GOOS }}-${{ env.GOARCH }}
/tmp/gitoops-linux
LICENSE
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -70,14 +70,14 @@ jobs:
- name: Compile
working-directory: ./cmd
run: |
go build -o /tmp/gitoops-${{ env.GOOS }}-${{ env.GOARCH }} .
go build -o /tmp/gitoops-macos .
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.TAG }}
files: |
/tmp/gitoops-${{ env.GOOS }}-${{ env.GOARCH }}
/tmp/gitoops-macos
LICENSE
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -108,14 +108,14 @@ jobs:
- name: Compile
working-directory: ./cmd
run: |
go build -o /tmp/gitoops-${{ env.GOOS }}-${{ env.GOARCH }} .
go build -o /tmp/gitoops-windows .
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.TAG }}
files: |
/tmp/gitoops-${{ env.GOOS }}-${{ env.GOARCH }}
/tmp/gitoops-windows
LICENSE
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ba0e86b

Please sign in to comment.