Skip to content

Commit

Permalink
Remove windows and darwin steps
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmeyer committed Jan 15, 2021
1 parent aa18efe commit 5dbe04d
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,29 +67,3 @@ jobs:
asset_name: letter-generator-linux_amd64.tar.gz
asset_content_type: application/gzip
if: startsWith(github.ref, 'refs/tags/')

- name: Upload release asset for windows amd64
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOOS: windows
GOARCH: amd64
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/windows/amd64/letter-generator-windows_amd64.tar.gz
asset_name: letter-generator-windows_amd64.tar.gz
asset_content_type: application/gzip
if: startsWith(github.ref, 'refs/tags/')

- name: Upload release asset for darwin amd64
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOOS: darwin
GOARCH: amd64
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/darwin/amd64/letter-generator-darwin_amd64.tar.gz
asset_name: letter-generator-darwin_amd64.tar.gz
asset_content_type: application/gzip
if: startsWith(github.ref, 'refs/tags/')

0 comments on commit 5dbe04d

Please sign in to comment.