Skip to content

Commit

Permalink
[patch] 💚 Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Rintaro Okamura <[email protected]>
  • Loading branch information
Rintaro Okamura committed Dec 20, 2019
1 parent 6fede8e commit 2f1d4c1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,27 +98,29 @@ jobs:
if: startsWith( github.ref, 'refs/tags/')
with:
name: gitwerk-linux-amd64.zip
path: tmp
- name: Upload Release Asset (linux)
if: startsWith( github.ref, 'refs/tags/')
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./gitwerk-linux-amd64.zip
asset_path: ./tmp/gitwerk-linux-amd64.zip
asset_name: gitwerk-linux-amd64.zip
asset_content_type: application/zip
- uses: actions/download-artifact@v1
if: startsWith( github.ref, 'refs/tags/')
with:
name: gitwerk-macos-amd64.zip
path: tmp
- name: Upload Release Asset (macos)
if: startsWith( github.ref, 'refs/tags/')
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./gitwerk-macos-amd64.zip
asset_path: ./tmp/gitwerk-macos-amd64.zip
asset_name: gitwerk-macos-amd64.zip
asset_content_type: application/zip

0 comments on commit 2f1d4c1

Please sign in to comment.